/*
Theme Name: zhenlian
Version: 1.0
Description: 安徽领聚数字作为Google中国区核心合作伙伴,拥有安徽省唯一的一家Google出海体验中心,为安徽本土化外贸企业出海提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。
Author: 版权所有：安徽领聚
*/
@charset "utf-8";

:root {
  /* Global Color */
  --i_color: #fc9303;

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

  /* Default Border Color */
  --border_color: rgba(0, 0, 0, 0.1);

  --text_color: #111;
}

@media screen and (max-width: 1024px) {
  :root {
    --header_height: 0.6rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --border_color: rgba(0, 0, 0, 0.06);
  }
}

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

.wrap_l {
  box-sizing: border-box;
  padding-left: 8.2vw;
}

.wrap_r {
  box-sizing: border-box;
  padding-right: 8.2vw;
}

@media screen and (max-width: 1440px) {
  .wrap_l {
    padding-left: 3vw;
  }
  .wrap_r {
    padding-right: 3vw;
  }
}

/* 内页banner */

.banner__ {
  position: relative;
  padding-bottom: 36%;
}

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

.banner__ .wrap {
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner__ .banner__txt {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.banner__ .banner__txt p {
  color: #fff;
  font-size: 0.48rem;
  margin-bottom: 0.2rem;
}

@media screen and (max-width: 1024px) {
  .banner__ .banner__txt p {
    font-size: 0.4rem;
    margin-bottom: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .banner__ .banner__txt p {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 560px) {
  .banner__ .banner__txt p {
    font-size: 0.24rem;
    margin-bottom: 0.1rem;
  }
}

/* Breadcrumb */
.in_position {
  position: relative;
}
.in_position .ip_box {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 0.2rem;
  color: #fff;
  position: relative;
  line-height: 20px;
}

.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 a {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .in_position a {
    font-size: 13px;
  }
}

/* --------- 通用样式 --------- */

/* button */

.button_su {
  overflow: hidden;
  position: relative;
  display: table;
  cursor: pointer;
  border-radius: 0.05rem;
}

.su_button_circle {
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
  z-index: 1;
}

.btn_box {
  display: table;
  border-radius: 0.05rem;
  background-color: var(--i_color);
  box-sizing: border-box;
  padding: 0.06rem 0.25rem;
  z-index: 20;
}

.btn_box span {
  color: #fff;
  z-index: 10;
}

.btn_box iconify-icon {
  color: #fff;
  font-size: 0.22rem;
  margin-left: 0.1rem;
  z-index: 10;
}

.btn_box icon {
  color: #fff;
  font-size: 0.13rem;
  margin-left: 0.1rem;
  z-index: 10;
}

@media screen and (max-width: 560px) {
  .btn_box {
    padding: 0.04rem 0.12rem;
  }
  .btn_box span {
    font-size: 0.15rem;
  }
  .btn_box iconify-icon {
    font-size: 0.2rem;
    margin-left: 0.04rem;
  }
  .btn_box icon {
    font-size: 0.1rem;
    margin-left: 0.04rem;
  }
}

/* title */

.title_Box {
  position: relative;
}

.title_Box::before {
  content: "";
  display: block;
  width: 11vw;
  height: 1px;
  background-color: #f4a000;
  position: absolute;
  left: 50%;
  bottom: -5%;
  transform: translateX(-50%);
}

.title_Box p {
  color: var(--text_color);
}

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

/* 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: 2014;
  background-color: rgba(255, 255, 255, 0.3);
}
header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgb(0 0 0 / 10%);
}
header.fixedHeader {
  background: #fff;
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
}
header .header_box {
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0 0.9rem;
}

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

/* logo */

.logo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: var(--header_height);
}
.logo a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 58%;
}
.logo img {
  max-height: 100%;
}

/* nav */

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

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

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

  .i_nav > .current-menu-item::before,
  .i_nav > .current-category-ancestor::before,
  .i_nav > .current-post-ancestor::before,
  .i_nav > .current-menu-ancestor::before,
  .i_nav > .current-menu-parent::before,
  .i_nav > li:hover::before,
  .i_nav > li.active::before {
    right: initial;
    left: 0;
    width: 100%;
  }
  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a,
  .i_nav > li:hover > a,
  .i_nav > li.active > a {
    color: var(--i_color);
  }

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

  .i_nav .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu li:not(:last-child):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90%;
    height: 1px;
    background: #eee;
  }
  .i_nav .sub-menu a {
    display: block;
    padding: 0 0.2rem;
    font-size: 0.16rem;
    color: #333;
    line-height: 0.4rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    transition: all 0.4s;
  }

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

  .i_nav .sub-menu li:hover a {
    color: var(--i_color);
  }
}
@media screen and (max-width: 1440px) {
  .i_nav {
    gap: 0 0.46rem;
  }
}
@media screen and (max-width: 1366px) {
  .i_nav {
    gap: 0 0.35rem;
    margin-left: 0.4rem;
  }
  .i_nav > li > a {
    font-size: 17px;
  }
}
@media screen and (max-width: 1200px) {
  .i_nav {
    gap: 0 0.4rem;
  }
  .i_nav > li > a {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

@media screen and (max-width: 1024px) {
  .i_nav {
    opacity: 0;
    position: fixed;
    top: var(--header_height);
    left: 101%;
    width: 100%;
    width: 100vw;
    height: calc(100vh - var(--header_height));
    background: #fff;
    overflow-y: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 9999;
  }
  .i_nav.active {
    opacity: 1;
    left: 0;
  }

  /*滚动条*/

  .i_nav::-webkit-scrollbar {
    width: 3px;
    height: 8px;
  }
  .i_nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #555;
  }
  .i_nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: #f1f1f1;
  }

  .i_nav > li {
    margin: 0 0 !important;
    border-bottom: 1px solid var(--border_color);
    position: relative;
  }
  .i_nav > .menu-item-has-children span {
    display: block;
    position: absolute;
    top: 8px;
    right: 0.2rem;
    width: 0.3rem;
    height: 0.3rem;
    box-sizing: border-box;
    border: 1px solid #ccc;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.2rem;
  }
  .i_nav > .menu-item-has-children span.on {
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 12.998H5v-2h14z"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.2rem;
  }

  .i_nav > li > a {
    padding: 0 0.2rem;
    font-size: 0.16rem;
    color: #222;
    line-height: 0.44rem;
    text-transform: uppercase;
  }
  .i_nav > .current-menu-item > a,
  .i_nav > .current-category-ancestor > a,
  .i_nav > .current-post-ancestor > a,
  .i_nav > .current-menu-ancestor > a,
  .i_nav > .current-menu-parent > a {
    color: var(--i_color) !important;
  }

  .i_nav > li > .sub-menu {
    display: none;
  }
  .i_nav > li > .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu a {
    padding: 0 0.4rem;
    font-size: 0.15rem;
    color: #555;
    line-height: 0.4rem;
    position: relative;
  }
  .i_nav .sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border_color);
  }

  /* .i_nav > li > .sub-menu b {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.4rem;
    height: 0.4rem;
    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }
  .i_nav > li > .sub-menu b.on {
    background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  } */

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

  .i_nav .sub-menu .sub-menu a {
    padding: 0 0.6rem;
    font-size: 0.13rem;
    color: #888;
    line-height: 0.36rem;
    position: relative;
  }

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

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

.nav_menu.on i {
  opacity: 0;
}

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

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

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

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

.search_cont,
.top_language {
  height: var(--header_height);
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  position: relative;
}

.search_cont .top_search_ico {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.search_cont .top_search_ico::before {
  content: "";
  display: block;
  width: 120%;
  height: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  border-radius: 50%;
}

.top_search_ico iconify-icon,
.top_language_btn iconify-icon {
  font-size: var(--size);
  color: #fff;
  cursor: pointer;
}

.top_search_ico.on,
.top_language_btn.on {
  background-color: #000;
}

.top_search_ico.on::before,
.top_language_btn.on::before {
  border-color: #000;
}

.top_search_ico.on iconify-icon,
.top_language_btn.on iconify-icon {
  color: #fff;
}

.top_language {
  position: relative;
}
.top_language_btn {
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 80%);
  border-radius: 50%;
  position: relative;
}

.top_language_btn iconify-icon {
  color: var(--i_color);
}

.top_language_btn::before {
  content: "";
  display: block;
  width: 120%;
  height: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 0, 0, 80%);
  border-radius: 50%;
}

.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;
  white-space: nowrap;
}
.curr_lang {
  margin-bottom: 0.12rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid #eee;
}

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

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

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

@media screen and (max-width: 768px) {
  .language_list dt > h6 {
    font-size: 15px;
  }
}

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

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

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

/* 社媒icons */

.top_upRight_she {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 0.26rem;
}
.top_upRight_she dt {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.top_upRight_she dt a {
  display: block;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
.top_upRight_she dt a iconify-icon {
  font-size: 0.24rem;
  color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.top_upRight_she dt a:hover iconify-icon {
  color: var(--i_color);
}
.top_upRight_she dt:hover {
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
}

/* 自适应 */

@media screen and (max-width: 1440px) {
  header .header_box {
    padding: 0 0.3rem;
  }
  .logo a {
    height: 40%;
  }
  .i_nav {
    margin-left: 0.6rem;
  }
}
@media screen and (max-width: 1366px) {
  header .header_box {
    padding: 0 0.2rem;
  }
  .i_nav {
    margin-left: 0.35rem;
  }
}

@media screen and (max-width: 1200px) {
  .logo a {
    height: 30%;
  }
  .i_nav {
    margin-left: 0.2rem;
    gap: 0 0.25rem;
  }
  .top_r {
    gap: 0 0.15rem;
  }
  .top_upRight_she {
    margin-left: 0.15rem;
  }
}

@media screen and (max-width: 1024px) {
  .top_upRight_she {
    display: none;
  }
  .i_nav.active {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .logo a {
    height: 50%;
  }
}
@media screen and (max-width: 560px) {
  .logo a {
    height: 40%;
  }
  .top_r {
    gap: 0 0.25rem;
  }
  .nav_menu {
    margin-left: 0.25rem;
  }
  .search_cont .top_search_ico {
    width: 30px;
    height: 30px;
  }
  .top_language_btn {
    width: 30px;
    height: 30px;
  }
  .search_cont .top_search_ico::before {
    display: none;
  }
  .top_language_btn::before {
    display: none;
  }
  .top_search_ico iconify-icon,
  .top_language_btn iconify-icon {
    font-size: 0.16rem;
  }
}

/* --- banner --- */

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

.i_banner_list .swiper-slide::before {
  content: "";
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.swiper-notification {
  display: none;
}

.i_banner01 {
  width: 100%;
  position: relative;
  padding-bottom: 45%;
}

.i_banner01 video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}

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

.i_banner01 .i_banner01_text h3,
.i_banner01 .i_banner01_text h4 {
  color: #fff;
  font-weight: bold;
}

.i_banner01 .i_banner01_text p {
  color: #fff;
}

/* -------------------------- */
.i_banner-prev,
.i_banner-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.55rem;
  height: 0.55rem;
  background: rgb(0 0 0 / 40%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 50%;
  transition: all 0.3s;
}
.i_banner-prev {
  left: 2%;
}
.i_banner-next {
  right: 2%;
}
.i_banner-prev iconify-icon,
.i_banner-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.22rem;
  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;
  bottom: 0.1rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.i_banner-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  display: inline-block;
  margin: 0 6px;
  background: #ccc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.i_banner-pagination .swiper-pagination-bullet-active {
  background: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .i_banner01 {
    padding-bottom: 60%;
  }
  .i_banner01 .i_banner01_text {
    width: 90%;
  }
  .i_banner-prev,
  .i_banner-next {
    display: none;
  }
  .i_banner-pagination {
    display: block;
  }
}

@media screen and (max-width: 560px) {
  .i_banner01 {
    padding-bottom: 63.5%;
  }
  .i_banner01 .i_banner01_text h3,
  .i_banner01 .i_banner01_text h4 {
    font-size: 0.18rem;
  }
  .i_banner01 .i_banner01_text p {
    font-size: 0.15rem;
    margin-bottom: 0.1rem;
  }
}

@media screen and (max-width: 320px) {
  .i_banner01 {
    padding-bottom: 65%;
  }
  .i_banner-pagination {
    bottom: 0.03rem;
  }
}

/* 分类 */
.ClassificationList {
  width: 100%;
  display: flex;
}

.ClassificationItem {
  width: 25%;
  position: relative;
  overflow: hidden;
}
.ClassificationItem::before {
  content: "";
  display: block;
  padding-bottom: 137.5%;
}

.ClassificationItem a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20;
}

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

.ClassificationItem .Cf_title {
  width: 100%;
  color: #fff;
  /* font-size: 0.26rem; */
  position: absolute;
  top: 5%;
  box-sizing: border-box;
  padding: 0 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.ClassificationItem .Cf_subtitle {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) -39%,
    rgba(255, 255, 255, 0.4) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  bottom: 2%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  padding: 0 0.2rem 4px;
  font-size: 40px;
  font-style: italic;
}

.ClassificationItem .Masking_board {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(
    180deg,
    #000000 0%,
    rgba(0, 0, 0, 0.4) 54%,
    #000000 100%
  );
  transition: all 0.5s ease;
}

.md_box {
  width: 100%;
  height: 100%;
  position: relative;
}

.md_box::after {
  content: "";
  display: block;
  width: 5px;
  height: 25%;
  background: url(static/imgs/Wire.webp) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.md_box::before {
  content: "";
  display: block;
  width: 5px;
  height: 25%;
  background: url(static/imgs/Wire2.webp) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.md_box p {
  width: 100%;
  position: absolute;
  top: 22%;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  padding: 0 0.2rem;
}

.md_box .md_logo {
  width: 18%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.md_box .md_logo > div {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
}

.md_box .md_logo i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgb(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.6s ease;
}
.md_box .md_logo em {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
}
.md_box .md_logo em::before {
  content: "";
  position: absolute;
  bottom: 26%;
  left: 20%;
  width: 0;
  height: 8px;
  background: #000;
  border-radius: 100px;
  transition: all 1s 0.1s;
}
.md_box .md_logo > div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.md_box .md_logo > div::before {
  width: 150px;
  height: 150px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(static/imgs/md_wire.webp) no-repeat center;
  background-size: cover;
  animation: rotate 6s linear infinite;
}

@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.md_box span {
  width: 100%;
  position: absolute;
  bottom: 22%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) -39%,
    rgba(255, 255, 255, 0.4) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  padding: 0 0.2rem 4px;
  font-size: 40px;
  font-style: italic;
}

@media screen and (min-width: 1025px) {
  .ClassificationItem:hover .Cf_title,
  .ClassificationItem:hover .Cf_subtitle {
    display: none;
  }
}

.ClassificationItem:hover .Masking_board {
  opacity: 1;
}
.ClassificationItem:hover em::before {
  width: 62%;
}

.ClassificationItem:hover .md_box .md_logo i {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1440px) {
  .ClassificationItem .Cf_subtitle,
  .md_box span {
    font-size: 30px;
  }
  .md_box::before {
    height: 15%;
    bottom: 5%;
  }
  .md_box::after {
    height: 15%;
    top: 5%;
  }
}

@media screen and (max-width: 1200px) {
  .ClassificationItem .Cf_title {
    font-size: 0.18rem;
  }
  .ClassificationItem .Cf_subtitle,
  .md_box span {
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .ClassificationList {
    flex-wrap: wrap;
  }
  .ClassificationItem {
    width: 50%;
  }
  .ClassificationItem::before {
    padding-bottom: 100%;
  }
  .ClassificationItem .Masking_board {
    display: none;
  }
  .ClassificationItem .Cf_title {
    display: none;
  }
  .ClassificationItem .Cf_subtitle {
    bottom: 4%;
    font-size: 24px;
    background: none;
    -webkit-text-fill-color: initial;
    color: #fff;
    background-clip: initial;
  }
}

@media screen and (max-width: 560px) {
  .ClassificationList .ClassificationItem .Cf_subtitle {
    font-size: 16px;
  }
}

/* 热卖 */
.i_hotBox {
  width: 100%;
  position: relative;
  background: url(static/imgs/sliver03.png) repeat-x;
  animation: move_wave 16s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

@keyframes move_wave {
  0% {
    background-position: 0 0;
  }

  to {
    background-position: 1732px 0;
  }
}

.ih_box {
}

.ih_list {
  position: relative;
  overflow: hidden;
}
.ih_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.ih_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.ih_box li a {
  display: block;
  width: 100%;
  z-index: 10;
  position: relative;
}
.ih_list .coverPic {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ih_list .coverPic::before {
  content: "";
  display: block;
  padding-bottom: 50%;
}
.ih_list .coverPic img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s linear;
}
.ih_list .coverPic img:nth-child(2) {
  top: -60%;
  opacity: 0;
}
.ih_box li a p {
  width: 80%;
  margin: 0 auto;
  margin-top: 0.2rem;
  color: var(--text_color);
  font-size: 0.16rem;
  text-align: center;
  line-height: 1.4;
  transition: all 0.4s linear;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ih_list .coverPic .single-image {
  transition: none;
}

.ih_box li:hover .coverPic .first-image {
  top: -60%;
  opacity: 0;
}

.ih_list li:hover .coverPic .second-image {
  top: 50%;
  opacity: 1;
}

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

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

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

/* -------------------------- */
.ih-pagination {
  width: 40%;
  height: 3px;
  display: block;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.ih-pagination::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 1px;
  background: #ddd;
}
.ih-pagination span {
  background: #f4a000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .ih-pagination {
    bottom: 0.1rem;
  }
  .ih-prev,
  .ih-next {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .ih_box li a p {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 560px) {
}

/* 关于我们 */
.i_about {
  width: 100%;
  background: url(https://lingjuimg.com/wp-content/uploads/ZhenLian/2025/07/i_about.webp)
    no-repeat center;
  background-size: cover;
  position: relative;
  padding: 11% 0;
  /* background-attachment: fixed; */
}

.i_aboutlogo {
}

.i_aboutlogo img {
  max-width: 100%;
  max-height: 1.14rem;
}

.i_about .wrap > p {
  width: 38%;
  color: #fff;
  margin: 0.7rem 0 0.85rem 0;
}

.i_about_btn {
  z-index: 20;
  position: relative;
}

.i_about_btn img {
  max-width: 100%;
  max-height: 1.12rem;
  cursor: pointer;
  animation: rotate0 6s linear infinite;
  z-index: 20;
}

@keyframes rotate0 {
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .i_aboutlogo img {
    max-height: 0.6rem;
  }
  .i_about .wrap > p {
    width: 45%;
    margin: 0.3rem 0 0.4rem 0;
  }
  .i_about_btn img {
    max-height: 0.8rem;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
  .i_aboutlogo img {
    max-height: 0.4rem;
    z-index: 10;
    position: relative;
  }
  .i_about .wrap > p {
    width: 100%;
    margin: 0.2rem 0 0.3rem 0;
    z-index: 10;
    position: relative;
  }
  .i_about_btn img {
    max-height: 0.5rem;
    z-index: 20;
    position: relative;
  }
  .i_about::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
}
@media screen and (max-width: 560px) {
  .i_aboutlogo img {
    max-height: 0.25rem;
    position: relative;
  }
  .i_about .wrap > p {
    font-size: 0.14rem;
  }
}

/* 宣传数据 */
.i_data {
  width: 100%;
  background-color: #150b00;
}

.data_list {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  box-sizing: border-box;
  gap: 0 1.5rem;
}

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

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

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

.data_list li > div .iconfont {
  font-size: 0.8rem;
}

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

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

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

@media screen and (max-width: 1440px) {
  .data_list li > div::before {
    width: 2rem;
    bottom: -18%;
  }
  .data_list li > div .iconfont {
    font-size: 0.5rem;
  }
  .data_list li > div span {
    font-size: 0.4rem;
  }
  .data_list li > div i {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 1366px) {
  .data_list {
    gap: 0 1.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .data_list {
    gap: 0 1rem;
  }
  .data_list li > div::before {
    width: 1.2rem;
    bottom: -25%;
  }
  .data_list li > div .iconfont {
    font-size: 0.4rem;
  }
  .data_list li > div span {
    font-size: 0.3rem;
  }
  .data_list li > div i {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .data_list {
    width: 100%;
    padding: 0 0.4rem;
    flex-wrap: wrap;
    gap: 0.2rem 2%;
  }
  .data_list li {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .data_list {
    padding: 0 0.12rem;
  }
  .data_list li {
    width: 49%;
  }
  .data_list li > div::before {
    width: 0.6rem;
    bottom: -35%;
  }
  .data_list li > div .iconfont {
    font-size: 0.2rem;
  }
  .data_list li > div span {
    font-size: 0.18rem;
  }
  .data_list li > div i {
    font-size: 0.18rem;
  }
  .data_list li > P {
    margin-top: 0.1rem;
  }
}

/* 旋转切换 */
.Rotation_Box {
  width: 100%;
  background: url(https://lingjuimg.com/wp-content/uploads/ZhenLian/2025/07/SellingPoints.webp)
    no-repeat center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.Rotation_Box > img {
  position: absolute;
  left: 50%;
  bottom: -19%;
  transform: translateX(-50%);
  max-width: 100%;
  max-height: 3.9rem;
}

.Rotation_Box .title_Box p {
  color: #fff;
}

.Rotation_Box .R_contentBox {
  width: 100%;
  position: relative;
  padding-bottom: 3rem;
  z-index: 20;
}

.Rotation_Box .Rc_list {
  width: 100%;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  gap: 0.8rem 45%;
  padding-top: 0.5rem;
  z-index: 20;
}

.Rotation_Box .Rc_list li {
  width: 27.5%;
  cursor: pointer;
  z-index: 20;
  position: relative;
}

.Rotation_Box .Rc_list li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.1rem;
  display: none;
}

@media screen and (min-width: 769px) {
  .Rc_list li:nth-child(3) {
    order: 4;
  }

  .Rc_list li:nth-child(4) {
    order: 3;
  }

  .Rotation_Box .Rc_list li:nth-child(1),
  .Rotation_Box .Rc_list li:nth-child(4) {
    text-align: right;
  }
}

.Rc_pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 0.1rem;
  display: none;
}

.Rotation_Box .Rc_list li h4 {
  color: #fff;
  font-size: 0.24rem;
  font-weight: bold;
  transition: all 0.4s;
  position: relative;
  z-index: 10;
}

.Rotation_Box .Rc_list li p {
  color: #fff;
  margin: 0.1rem 0;
  transition: all 0.4s;
  position: relative;
  z-index: 10;
}

.Rotation_Box .Rc_list li span {
  color: #656668;
  transition: all 0.4s;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 1025px) {
  .Rotation_Box .Rc_list .Rc_black h4,
  .Rotation_Box .Rc_list .Rc_black p,
  .Rotation_Box .Rc_list .Rc_black span {
    color: #000;
  }
}

.Rotation_Box .Rc_imgs {
  width: 580px;
  height: 580px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  border: 6px solid #fff;
}

.Rotation_Box .Rc_imgs::before {
  width: 125%;
  height: 125%;
  content: "";
  display: block;
  background: url(https://lingjuimg.com/wp-content/uploads/ZhenLian/2025/07/yjt.webp)
    no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--rotation, 0deg));
  transition: all 0.4s;
  z-index: 5;
}

.Rotation_Box .Rc_imgs .Rc_imgBox {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.Rotation_Box .Rc_imgs .Rc_imgBox img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.6s;
}

.Rotation_Box .Rc_imgs .Rc_imgBox .imgBlock {
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .Rotation_Box .R_contentBox {
    padding-bottom: 1.5rem;
  }
  .Rotation_Box .Rc_imgs {
    width: 480px;
    height: 480px;
  }
}

@media screen and (max-width: 1366px) {
  .Rotation_Box .Rc_imgs {
    width: 450px;
    height: 450px;
  }
}

@media screen and (max-width: 1200px) {
  .Rotation_Box .R_contentBox {
    padding-bottom: 0.2rem;
  }
  .Rotation_Box > img {
    bottom: 0;
  }
  .Rotation_Box .Rc_imgs {
    width: 400px;
    height: 400px;
  }
}

@media screen and (max-width: 1024px) {
  .Rotation_Box .wrap > h3::before {
    display: none;
  }
  .Rotation_Box .Rc_list {
    padding-top: 0;
  }
  .Rotation_Box .Rc_imgs {
    width: 300px;
    height: 300px;
    top: 10%;
  }
  .Rotation_Box .Rc_imgs::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .Rotation_Box .R_contentBox {
    padding-bottom: 0;
  }
  .Rotation_Box .Rc_imgs {
    display: none;
  }
  .Rotation_Box .Rc_list {
    gap: 0.3rem 10%;
  }
  .Rotation_Box .Rc_list li {
    width: 100%;
    padding: 0.4rem 0.2rem;
    box-sizing: border-box;
  }
  .Rotation_Box .Rc_list li span {
    color: #fff;
  }

  .Rotation_Box .Rc_list li::before {
    display: block;
  }

  .Rc_pic {
    display: block;
  }

  .Rotation_Box .Rc_list li h4 {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .Rotation_Box .Rc_list li p {
    font-size: 0.15rem;
  }
  .Rotation_Box .Rc_list li span {
    font-size: 0.12rem;
  }
}

/* 荣誉证书 */
.homeCertificate {
  margin-top: 0.6rem;
  padding-top: 0.36rem;
  position: relative;
  overflow: hidden;
}

.move_title {
  position: absolute;
  left: 60%;
  top: 0;
  font-size: 8vw;
  line-height: 1;
  font-weight: bold;
  color: #f8f8f8;
}

.homeCertificate .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  position: relative;
  z-index: 3;
}

.homeCertificate_t {
  flex-shrink: 0;
  width: 40%;
  padding-bottom: 2.7rem;
  position: relative;
}

.homeCertificate_t .i_tit {
  position: relative;
}

.homeCertificate_t .i_tit::before {
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  background-color: #f4a000;
  position: absolute;
  bottom: -5%;
  left: 0;
}

.homeCertificate_t > span {
  width: 80%;
  display: block;
  line-height: 1.6;
  color: #666;
}

.homeCertificate_t > .button_su .btn_box {
  background-color: transparent;
  border: 1px solid var(--i_color);
}

.homeCertificate_t > .button_su .btn_box span,
.homeCertificate_t > .button_su .btn_box iconify-icon {
  color: var(--i_color);
  transition: all 0.2s;
}

.homeCertificate_t > .button_su:hover .btn_box span,
.homeCertificate_t > .button_su:hover .btn_box iconify-icon {
  color: #fff;
}

.homeCertificate_t > img {
  max-width: 100%;
  max-height: 1.77rem;
  position: absolute;
  bottom: 0;
}

.homeCertificate_p {
  width: 100%;
  font-size: 0;
}
.homeCertificate_p img {
  width: 100%;
}

.homeCertificate .line {
  display: block;
  width: 100%;
  height: 1.5rem;
  background: #dfdfdf;
  position: relative;
}
.homeCertificate .line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 35%;
  background: #f7f7f7;
}

@media screen and (max-width: 1440px) {
  .homeCertificate_t {
    margin-top: 0;
  }
}
@media screen and (max-width: 1366px) {
  .homeCertificate {
    margin-top: 0.5rem;
    padding-top: 0.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .move_title {
  }
  .homeCertificate {
    margin-top: 40px;
    padding-top: 50px;
  }
  .homeCertificate .wrap {
    flex-wrap: wrap;
  }
  .homeCertificate_t {
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 1.6rem;
  }
  .homeCertificate_t > img {
    max-height: 1.2rem;
  }
  .homeCertificate_t > span {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .homeCertificate {
    margin-top: 40px;
    padding-top: 30px;
  }
  .homeCertificate_t {
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 1.4rem;
  }
  .homeCertificate_t > img {
    max-height: 1rem;
  }
}
@media screen and (max-width: 560px) {
  .move_title {
    font-size: 12vw;
  }
  /* .homeCertificate_t > img {
    max-height: 40px;
  } */

  .homeCertificate .line {
    margin-top: -28px;
    height: 80px;
  }
  .button_su {
    margin-top: 0.15rem;
  }
  .homeCertificate_t > span {
    margin-top: 0.1rem;
    font-size: 0.15rem;
  }
}

/* 工厂展示 */

.i_factory {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.i_factory > img {
  max-width: 100%;
  max-height: 13.65rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

/* --- 工厂轮播 */

.i_factory_list {
}

.factory_list {
  position: relative;
  overflow: hidden;
}
.factory_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 7rem;
}

.factory_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.factory_list .swiper-slide span {
  display: block;
  position: relative;
  padding-bottom: 52%;
  transition: all 0.4s;
  overflow: hidden;
}

.factory_list .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.06rem;
}

.factory_list .swiper-slide p {
  width: 90%;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: 50%;
  bottom: -100%;
  transform: translateX(-50%);
  z-index: 10;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s;
  text-align: center;
}

.factory_list .swiper-slide-active span {
  padding-bottom: 74%;
}

.factory_list .swiper-slide-active p {
  bottom: 5%;
}

.factory_list .swiper-slide-active::before {
  content: "";
  display: block;
  width: 100%;
  height: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent, rgb(252, 147, 3, 0.5));
  z-index: 1;
}

/* -------------------------- */
.factory-pagination {
  display: block;
  text-align: center;
}
.factory-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.01rem;
  display: inline-block;
  background: #ccc;
  outline: none;
  cursor: pointer;
}
.factory-pagination .swiper-pagination-bullet-active {
  background: #f4a000;
}

/* --- 品牌轮播 */
.i_brand_list {
}

.brand_list {
  position: relative;
  overflow: hidden;
}
.brand_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.brand_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  /* border: 1px solid rgb(51, 51, 51, 0.2); */
  box-sizing: border-box;
  /* background-color: #fff; */
  transition: all 0.4s;
  border-radius: 0.1rem;
  overflow: hidden;
}
.brand_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 50%;
}

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

.brand_list .swiper-slide:hover {
  border-color: var(--i_color);
}

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

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
  .factory_list .swiper-wrapper {
    min-height: 6rem;
  }
}
@media screen and (max-width: 1200px) {
  .factory_list .swiper-wrapper {
    min-height: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .factory_list .swiper-wrapper {
    min-height: 4rem;
  }
  .brand_list {
    padding: 0 2%;
  }
  .brand-pagination {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .factory_list .swiper-wrapper {
    min-height: 4rem;
  }
  .i_factory_list {
    margin-top: 0.4rem;
  }
  .factory-pagination .swiper-pagination-bullet {
    width: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .factory_list .swiper-wrapper {
    min-height: 2.5rem;
  }
  .i_factory_list {
    margin-top: 0.1rem;
  }
  .i_brand_list {
    margin-top: 0.4rem;
  }
  .factory_list .swiper-slide > span p {
    font-size: 0.14rem;
    font-weight: 400;
  }
  .brand-pagination {
    margin-top: 0.15rem;
  }
}

/* 新闻 */
.i_news {
  background: url(https://lingjuimg.com/wp-content/uploads/ZhenLian/2025/07/i_new.webp)
    no-repeat center;
  background-size: cover;
  overflow: hidden;
}

.i_newsBox {
  width: 52%;
}

.i_news .title_Box::before {
  width: 28%;
  left: 0;
  transform: none;
  background-color: rgb(252, 147, 3, 0.5);
  bottom: -10%;
}

.i_news .title_Box p {
  color: #fbf9f9;
}

.i_news_list {
  width: 100%;
}

.n_newA {
  width: 100%;
  padding: 0.12rem;
  box-sizing: border-box;
  background-color: rgb(255, 255, 255, 0.2);
}

.n_newA a {
  width: 100%;
  height: 100%;
  display: block;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 4%;
}

.n_newA .n_newA_img {
  flex-shrink: 0;
  width: 27%;
  position: relative;
  padding-bottom: 38%;
}

.n_newA .n_newA_img::before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.n_newA .n_newA_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.n_newA_texts {
  width: 69%;
}

.n_newA_texts .in_time {
  display: flex;
  align-items: baseline;
  color: #fff;
}

.n_newA_texts .in_time > span {
  font-size: 0.66rem;
  margin-right: 0.1rem;
}

.n_newA_texts > p {
  color: #fff;
  transition: all 0.4s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  padding-top: 0.3rem;
  position: relative;
}

.n_newA_texts > p::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.01rem;
  position: absolute;
  top: 8%;
  left: 0;
  background-color: #b2b1b1;
}

.n_newA_texts > span {
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.n_newA_texts > icon {
  color: rgb(252, 147, 3, 0.5);
  font-size: 0.3rem;
  margin-top: 0.15rem;
  display: block;
  transition: all 0.4s;
}

.n_newA:hover .n_newA_texts > p {
  color: var(--i_color);
}

.n_newA:hover .n_newA_texts > icon {
  color: var(--i_color);
}

.n_newB {
  width: 100%;
  display: flex;
  margin-top: 0.3rem;
  justify-content: space-between;
}

.n_newB li {
  width: 48.2%;
  box-sizing: border-box;
  background-color: rgb(255, 255, 255, 0.2);
  padding: 0.27rem;
}

.n_newB li a {
  width: 100%;
  height: 100%;
  display: block;
}

.nb_time {
  display: flex;
  color: #fff;
  align-items: baseline;
}

.nb_time span {
  font-size: 0.46rem;
  margin-right: 0.1rem;
}

.n_newB li a > p {
  color: #fff;
  padding-top: 0.46rem;
  margin-bottom: 0.16rem;
  position: relative;
  transition: all 0.4s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.n_newB li a > p::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.01rem;
  position: absolute;
  top: 20%;
  left: 0;
  background-color: rgb(255, 255, 255, 0.2);
}

.n_newB li a > icon {
  color: rgb(252, 147, 3, 0.5);
  font-size: 0.3rem;
  display: block;
  transition: all 0.4s;
}

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

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

@media screen and (max-width: 1440px) {
  .i_newsBox {
    width: 58%;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .i_newsBox {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .n_newA_texts .in_time > span {
    font-size: 0.4rem;
  }
  .n_newB {
    flex-wrap: wrap;
    gap: 0.3rem 0;
  }
  .n_newB li {
    width: 100%;
  }
  .nb_time span {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .n_newA {
    padding: 0.2rem;
  }
  .n_newA a {
    flex-wrap: wrap;
    gap: 0.2rem 0;
  }
  .n_newA .n_newA_img {
    width: 100%;
    padding-bottom: 100%;
    /* display: none; */
  }
  .n_newA_texts {
    margin-left: 0;
    width: 100%;
  }

  .n_newA_texts .in_time > span {
    font-size: 0.24rem;
  }

  .n_newA_texts > p {
    padding-top: 0.2rem;
  }

  .n_newB li {
    padding: 0.2rem;
  }
  .nb_time span {
    font-size: 0.24rem;
  }
  .n_newB li a > p {
    padding-top: 0.2rem;
  }
}

/* 联系我们 */
.i_contact {
  background: url(https://lingjuimg.com/wp-content/uploads/ZhenLian/2025/07/i_contact.webp)
    no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

.i_contact .wrap > p {
  color: #fff;
}

.i_contact .btn_box {
  background-color: rgb(252, 147, 3, 0.3);
}

/* footer */

footer {
  background-color: #fbf9f9;
}

.footer_top {
  border-bottom: 1px solid rgb(51, 51, 51, 0.2);
}

.ft_top {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.ft_top::before {
  width: 72%;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: rgb(51, 51, 51, 0.2);
}

.ft_top a {
  display: block;
}

.ft_top a img {
  height: 0.8rem;
}

.ft_bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.ft_bottom .ftb_information {
}

.ft_bottom .ftb_information h3 {
  color: var(--text_color);
  font-weight: bold;
}

.ft_bottom_list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem 0;
}

.ft_bottom_list li {
  display: flex;
  align-items: center;
  font-weight: 100;
}

.ft_bottom_list li iconify-icon {
  font-size: 0.25rem;
  margin-right: 0.2rem;
}

.ft_bottom_list li p {
  color: var(--text_color);
}

.ft_bottom_list li span {
  color: #666666;
  margin-left: 0.1rem;
  transition: all 0.4s;
}

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

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

.ft_bottom .ftb_menu {
  width: 52%;
  display: flex;
  justify-content: space-between;
  margin-top: -2%;
}

.ft_bottom .ftb_menu .f_nav h5 {
  font-weight: bold;
  color: var(--text_color);
}

.ft_bottom .ftb_menu .f_nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem 0;
}

.ft_bottom .ftb_menu .f_nav ul li a {
  font-size: 0.18rem;
  font-weight: 100;
  color: var(--text_color);
  transition: all 0.4s;
}

.ft_bottom .ftb_menu .f_nav ul li:hover a {
  color: var(--i_color);
}

.f_cr {
}
.f_cr p,
.f_cr a {
  font-size: 0.16rem;
  color: var(--text_color);
  line-height: 1.6;
}
.f_cr a:hover {
  color: var(--i_color);
  text-decoration: underline;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
  .ft_top a img {
    height: 0.6rem;
  }
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .ft_top a img {
    height: 0.45rem;
  }
  .ft_bottom .ftb_information {
    width: 100%;
  }
  .ft_bottom .ftb_menu {
    display: none;
  }
  .f_cr p,
  .f_cr a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .ft_top a img {
    height: 0.4rem;
  }
  .ft_top::before {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .ft_bottom {
    margin-top: 0.15rem;
  }
  .ft_top a img {
    height: 0.3rem;
  }
  .ft_bottom_list li iconify-icon {
    font-size: 0.2rem;
    margin-right: 0.05rem;
  }
  .ft_bottom_list li p {
    font-size: 0.14rem;
  }
  .ft_bottom_list li span {
    font-size: 0.14rem;
    margin-left: 0;
  }
  .f_cr {
    padding: 20px 0;
  }
  .f_cr p,
  .f_cr a {
    font-size: 13px;
  }
}

/* ----------------------------- news页面 */

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

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

.news_top .nt_active {
  position: relative;
}

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

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

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

@media screen and (max-width: 1024px) {
  .news_top {
    gap: 0 0.8rem;
  }
}

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

.news_list li {
  width: 100%;
  border: 1px solid rgb(51, 51, 51, 0.2);
  padding: 0.22rem;
  box-sizing: border-box;
  border-radius: 0.05rem;
  position: relative;
  overflow: hidden;
}

.news_list li .n_img {
  width: 29%;
  position: absolute;
  top: 50%;
  right: -80%;
  transform: translateY(-50%);
  transition: all 0.6s;
}

.news_list li a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0 2%;
  z-index: 20;
  position: relative;
}

.news_list .news_img {
  width: 18%;
  position: relative;
  overflow: hidden;
  border-radius: 0.05rem;
}

.news_list .news_img::before {
  content: "";
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 0.05rem;
  padding-bottom: 100%;
}

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

.news_list .news_txt {
  width: 80%;
}

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

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

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

.news_list .news_txt p {
  color: #111111;
  margin-top: 0.17rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

.news_list .news_txt span {
  color: #999999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_list .news_txt icon {
  color: var(--i_color);
  font-size: 0.35rem;
  margin-top: 0.43rem;
  display: block;
}

@media screen and (min-width: 1025px) {
  .news_list li:hover .n_img {
    right: -1%;
  }
}

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

.news_list li:hover .news_txt h3 {
  color: #111111;
}

.news_list li:hover .news_txt h3::before {
  background-color: var(--i_color);
}

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

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

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

  .news_list .news_txt icon {
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .news_list li .n_img {
    right: -1%;
  }
  .news_list .news_txt h3 {
    font-size: 0.2rem;
    font-weight: bold;
  }
  .news_list .news_txt h3::before {
    bottom: -50%;
  }
}
@media screen and (max-width: 768px) {
  .news_list .news_txt p {
    font-size: 0.16rem;
  }
  .news_list .news_txt span {
    font-size: 0.15rem;
  }
  .news_list .news_txt icon {
    font-size: 0.26rem;
    margin-top: 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .news_list li .n_img {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 100%;
  }
  .news_list li a {
    flex-wrap: wrap;
    gap: 0.2rem 0;
  }
  .news_list .news_img {
    width: 30%;
  }
  .news_list .news_txt {
    width: 100%;
  }
}

/* ----------------------------- contact页面 */

/* form表单 */
.c_form {
  position: relative;
  overflow: hidden;
  background-color: #f7f7f7;
}

.c_form::after,
.c_form::before {
  content: "";
  display: block;
  border-radius: 5rem;
  width: 100%;
  height: 1.4rem;
  position: absolute;
  transform: rotate(60deg);
}

.c_form::after {
  background-color: rgb(252, 147, 3, 0.2);
  right: -40%;
  bottom: -60%;
}

.c_form::before {
  background-color: rgb(246, 78, 69, 0.2);
  right: -59%;
  bottom: -83%;
}

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

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

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

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

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

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

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

#wpforms-87-field_4-container,
#wpforms-87-field_5-container {
  width: 49.2% !important;
}

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

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

  #wpforms-87-field_4-container,
  #wpforms-87-field_5-container {
    width: 100% !important;
  }
  #wpforms-87 .wpforms-field-container > .wpforms-field {
    margin: 0;
  }
}

/* 联系我们 */
.Contact_Us {
  position: relative;
  overflow: hidden;
}

.Contact_Us .wrap {
}

.Contact_Us .co_map {
  width: 70%;
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 5;
}

.Contact_Us .co_img {
  width: 47%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 6;
}

.Contact_Us .title_Box::before {
  left: 0;
  transform: none;
}

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

.cu_info li {
  width: 100%;
}

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

.cu_info .ci_top::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgb(51, 51, 51, 0.2);
  position: absolute;
  bottom: 10%;
  left: 0;
  z-index: 1;
}

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

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

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

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

.cu_info li a {
  display: flex;
  transition: all 0.6s;
  color: var(--text_color);
}

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

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

@media screen and (max-width: 1200px) {
  .cu_info .ci_top .ct_img {
    width: 0.4rem;
    height: 0.4rem;
  }
  .cu_info {
    gap: 0.3rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .c_form::after,
  .c_form::before {
    height: 0.8rem;
  }
  .c_form::after {
    bottom: -20%;
  }

  .c_form::before {
    bottom: -30%;
  }

  .Contact_Us .co_img {
    z-index: 20;
  }
  .cu_info {
    width: 100%;
  }
  .cu_info .ci_top::after {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .cu_info .ci_top .ct_img {
    width: 0.3rem;
    height: 0.3rem;
  }
  .cu_info .ci_top span {
    font-size: 0.18rem;
  }
  .cu_info li a {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 768px) {
  .c_form::after,
  .c_form::before {
    height: 0.7rem;
  }
  .c_form::after {
    bottom: -10%;
  }

  .c_form::before {
    bottom: -20%;
  }
  .Contact_Us .co_map {
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* display: none; */
  }
  .Contact_Us .co_img {
    /* width: 100%;
    z-index: -1;
    -webkit-mask-image: linear-gradient(to left, white, transparent);
    mask-image: linear-gradient(to left, white, transparent); */
    display: none;
  }

  .cu_info .ci_top {
    padding-bottom: 0.1rem;
  }
  .cu_info .ci_top span {
    font-size: 0.16rem;
  }
  .cu_info li a {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 560px) {
  .c_form::after,
  .c_form::before {
    height: 0.5rem;
  }
  .c_form::after {
    bottom: 25%;
    right: -30%;
  }

  .c_form::before {
    bottom: 20%;
  }
  .cu_info .ci_top .ct_img {
    width: 0.25rem;
    height: 0.25rem;
  }
}

/* ----------------------------- custom页面 */

/* 定制化 */
.customization {
  position: relative;
  margin-top: 1.8rem;
}

.cz_map {
  width: 75%;
  height: auto;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.cz_top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.cat_left {
  width: 32%;
}

.cat_left h3 {
  width: 100%;
  align-items: center;
}

.cat_left h3::after {
  width: 60%;
  height: 1px;
  content: "";
  display: block;
  background-color: #d8d8d8;
  margin-left: auto;
}

.cat_left p {
  width: max-content;
  margin: 0.12rem 0 0.52rem 0;
  background: linear-gradient(to right, #f64e45, #fc9303);
  -webkit-background-clip: text;
  color: transparent;
}

.customization .btn_box .btn_i {
  align-items: normal;
}

.customization .btn_box iconify-icon {
  transform: rotate(-45deg);
}

.cat_right {
  width: 64%;
  margin-top: -4.5%;
}

.customization .title_Box::before {
  left: 0;
  transform: none;
}

.cat_right article {
  color: #4d4d4d;
}

@media screen and (max-width: 1024px) {
  .customization {
    margin-top: 0.6rem;
  }
  .cz_map {
    width: 100%;
    height: 100%;
    object-fit: contain;
    right: 50%;
    top: 0;
    transform: translate(50%, 0);
  }
  .cz_top {
    gap: 0.3rem 0;
  }
  .cat_left {
    width: 100%;
  }
  .cat_left p {
    margin: 0 0 0.2rem 0;
  }
  .cat_left h3::after {
    width: 70%;
  }
  .cat_right {
    width: 100%;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .customization {
    margin-top: 0.3rem;
  }
  .cat_right article {
    font-size: 0.14rem;
    margin-top: 0.2rem;
  }
}

.cz_list {
  width: 100%;
  display: flex;
  gap: 0 3%;
  flex-wrap: wrap;
}

.cz_list li {
  width: 31.33%;
  box-sizing: border-box;
  border: 1px solid rgb(51, 51, 51, 0.2);
  padding: 0.2rem 0.3rem 0.2rem 0.5rem;
  border-radius: 0.05rem;
  transition: all 0.6s ease;
}

.cz_list li p {
  position: relative;
  transition: all 0.6s ease;
}

.cz_list li p::before {
  content: "";
  display: block;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  border: 1px solid rgb(51, 51, 51, 0.2);
  position: absolute;
  top: 50%;
  left: -6%;
  transform: translate(0, -50%);
  transition: all 0.6s ease;
}

.cz_list li span {
  color: #666666;
}

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

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

.cz_list li:hover p::before {
  border-color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .cz_list {
    gap: 0.3rem 3%;
  }
  .cz_list li {
    width: 48.5%;
    padding: 0.2rem;
  }
  .cz_list li p {
    font-size: 0.16rem;
  }
  .cz_list li p::before {
    display: none;
  }
  .cz_list li span {
    font-size: 0.14rem;
  }
}
@media screen and (max-width: 768px) {
  .cz_list {
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 560px) {
  .cz_list {
    gap: 0.15rem 0;
  }
  .cz_list li {
    width: 100%;
  }
}

.cz_img {
  width: 100%;
}

/* 优势宣传 */
.advantages_promotion {
  background-color: #fbf9f9;
}

.advantages_list {
  width: 100%;
  display: flex;
  gap: 0 2%;
  flex-wrap: wrap;
}

.advantages_list li {
  width: 32%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem 0;
}

.advantages_list .advantages_img {
  width: 100%;
  position: relative;
  padding-bottom: 61%;
  border-radius: 0.05rem;
  overflow: hidden;
}

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

.advantages_list .advantages_txt {
  box-sizing: border-box;
  padding: 0 0.2rem;
}

.advantages_list .advantages_txt p {
  padding-bottom: 0.3rem;
  position: relative;
  transition: all 0.6s ease;
}

.advantages_list .advantages_txt p::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgb(51, 51, 51, 0.2);
  position: absolute;
  left: 0;
  bottom: 24%;
  transition: all 0.6s ease;
}

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

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

.advantages_list li:hover .advantages_txt p::before {
  background-color: var(--i_color);
}

.advantages_list li:nth-child(2) {
  margin-top: 0.2rem;
}

.advantages_list li:nth-child(2) .advantages_img {
  order: 1;
}

@media screen and (max-width: 1024px) {
  .advantages_list {
    gap: 0.3rem 0;
  }
  .advantages_list li {
    width: 100%;
    flex-direction: row;
    align-items: center;
  }

  .advantages_list .advantages_img {
    padding-bottom: 30%;
  }

  .advantages_list li:nth-child(2) {
    margin-top: 0;
  }
}

@media screen and (max-width: 560px) {
  .advantages_list li {
    flex-wrap: wrap;
    gap: 0.15rem 0;
  }
  .advantages_list .advantages_img {
    padding-bottom: 45%;
  }
  .advantages_list .advantages_txt {
    padding: 0;
  }
  .advantages_list .advantages_txt p {
    padding-bottom: 0.1rem;
    font-size: 0.16rem;
  }
  .advantages_list .advantages_txt p::before {
    bottom: 15%;
  }
  .advantages_list li:nth-child(2) .advantages_img {
    order: 0;
  }
}

/* 定制化服务 */
.customized_service {
}

.cs_content {
  width: 100%;
}

.cs_list {
  width: 61%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem 0;
}

.cs_list li {
  width: 100%;
  background-color: #fbf9f9;
  box-sizing: border-box;
  border-radius: 0.05rem;
  padding: 0.3rem 0.3rem 0.3rem 0.4rem;
  position: relative;
  transition: all 0.6s ease;
}

.cs_list li::before {
  content: "";
  display: block;
  width: 0.06rem;
  height: 0;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5rem;
  transition: all 0.6s ease;
}

.cs_list li span {
  display: block;
  color: #666666;
}

.cs_img {
  width: 34.5%;
  height: 100%;
}

.cs_list li:hover {
  background-color: rgb(252, 147, 3, 0.05);
}

.cs_list li:hover::before {
  height: 100%;
}

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

@media screen and (max-width: 1024px) {
  .cs_list {
    width: 100%;
  }
  .cs_list li {
    padding: 0.2rem;
  }
  .cs_list li p {
    font-size: 0.16rem;
    margin-bottom: 0.1rem;
  }
  .cs_list li span {
    font-size: 0.14rem;
  }
  .cs_img {
    display: none;
  }
}

/* 服务流程 */
.Service_Process {
}

.oemodm_list {
  position: relative;
}
.oemodm_list::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 0;
  width: 2px;
  height: 100%;
  background: #eee;
}

.oemodm_list .bar {
  position: absolute;
  left: 0.8rem;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--i_color);
}
.oemodm_list .bar.active::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -1px;
  width: 30px;
  height: 30px;
  background: url(static/imgs/bottom.svg) no-repeat bottom;
  background-size: contain;
}

.oemodm_list dt {
  padding-bottom: 0.8rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0 6%;
  position: relative;
  cursor: pointer;
  z-index: 2;
}
.oemodm_list .order {
  flex-shrink: 0;
  width: 1.6rem;
  padding: 6px 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  background: #f7f7f7;
  -webkit-border-radius: 2rem;
  border-radius: 2rem;
  position: relative;
}
.oemodm_list .order::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 100%;
  width: 2rem;
  height: 2px;
  background: #eee;
}
.oemodm_list .order b {
  font-size: 0.3rem;
  color: #ddd;
}
.oemodm_list .order i {
  width: 0.3rem;
  height: 1px;
  background: #ddd;
  position: relative;
  margin-top: -2%;
}
.oemodm_list .order i::before {
  content: "";
  position: absolute;
  top: -4px;
  right: -2px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #ddd;
}

.oemodm_list .cont {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  box-sizing: border-box;
  padding: 0.2rem 0.4rem;
  background: #f7f7f7;
  border-radius: 0.06rem;
  position: relative;
  z-index: 2;
  margin-top: -2%;
}
.oemodm_list .cont p {
}
.oemodm_list .cont h6 {
  display: none;
}
.oemodm_list .pic {
  margin-left: auto;
  width: 1.6rem;
  position: relative;
  -webkit-border-radius: 0.08rem;
  border-radius: 0.08rem;
  overflow: hidden;
}
.oemodm_list .pic::before {
  content: "";
  display: block;
  padding-bottom: 50%;
}
.oemodm_list .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oemodm_list .cont,
.oemodm_list .cont .pic {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* --------- active --------- */
.oemodm_list dt.active .order {
  background: var(--i_color);
}
.oemodm_list dt.active .order::before {
  background: var(--i_color);
}
.oemodm_list dt.active .order b {
  color: #fff;
}
.oemodm_list dt.active .order i {
  background: #fff;
}
.oemodm_list dt.active .order i::before {
  border-left: 6px solid #fff;
}

.oemodm_list dt.show .cont {
  flex-wrap: wrap;
  padding: 0.4rem 0.4rem;
  background: #fff9f2;
}
.oemodm_list dt.show .cont p {
  width: 100%;
  color: var(--i_color);
}
.oemodm_list dt.show .cont h6 {
  display: block;
  width: 66%;
}
.oemodm_list dt.show .cont .pic {
  width: 30%;
}

@media screen and (max-width: 1024px) {
  .oemodm_list::before {
    display: none;
  }
  .oemodm_list dt {
    gap: 0 2%;
  }
  .oemodm_list .order {
    width: auto;
    padding: 6px 20px;
  }
  .oemodm_list .order::before {
    display: none;
  }
  .oemodm_list .order b {
    font-size: 20px;
  }
  .oemodm_list .order i {
    width: 16px;
  }

  .oemodm_list .cont {
    flex-wrap: wrap;
  }
  .oemodm_list .cont h6 {
    display: block;
    margin: 10px 0 20px;
    width: 100%;
  }
  .oemodm_list .pic {
    margin-left: 0;
    width: 100%;
    max-width: 420px;
  }

  .oemodm_list .bar {
    display: none !important;
  }
}
@media screen and (max-width: 560px) {
  .oemodm_list dt {
    flex-wrap: wrap;
    padding-bottom: 0.4rem;
  }
  .oemodm_list .order,
  .oemodm_list .cont {
    background: none;
    padding: 0 0;
  }
  .oemodm_list .order {
    margin-bottom: 10px;
  }
}

/* ----------------------------- technology页面 */
.core_rd {
  background-color: #fbf9f9;
}
.homeAdv_list {
  --li_padding: 0.4rem;
  --icon_size: 1.15rem;
  --circle_size: 1.36rem;
}
.homeAdv_list {
  padding-top: 0.1rem;
  position: relative;
  overflow: hidden;
}
.homeAdv_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  gap: 0 2%;
  flex-wrap: wrap;
}
.homeAdv_list .swiper-slide {
  width: 32%;
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  padding-top: 0.15rem;
}

.homeAdv_list em {
  display: block;
  position: absolute;
  top: 0.2rem;
  right: var(--li_padding);
  width: var(--icon_size);
  height: var(--icon_size);
  z-index: 3;
}
.homeAdv_list em img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  position: relative;
}

.homeAdv_list .swiper-slide > span {
  display: block;
  height: 100%;
  box-sizing: border-box;
  padding: var(--li_padding);
  position: relative;
  border: 2px solid rgb(51, 51, 51, 20%);
  border-radius: 8px;
  overflow: hidden;
}
.homeAdv_list .swiper-slide > span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 100%);
  border-radius: 8px;
}

.homeAdv_list .circle {
  opacity: 1;
  position: absolute;
  top: -0.54rem;
  left: -0.4rem;
  width: 0;
  height: 0;
  background: rgb(252, 147, 3, 10.2%);
  border-radius: 50%;
  z-index: 3;
}
.homeAdv_list .circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgb(252, 147, 3, 20%);
  border-radius: 50%;
}

.homeAdv_list .text {
  margin-top: calc(var(--icon_size) + 0.1rem);
  position: relative;
  z-index: 3;
}
.homeAdv_list .text h6 {
  width: 100%;
  font-size: 0.24rem;
  color: var(--text_color);
  z-index: 10;
  position: relative;
  transition: all 0.4s;
}
.homeAdv_list .text p {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 1.7;
}

@media screen and (min-width: 1025px) {
  .homeAdv_list .swiper-slide:hover > span {
    border-color: var(--i_color);
  }
  .homeAdv_list .swiper-slide:hover > span::after {
    background: rgb(255 255 255 / 50%);
  }
  .homeAdv_list .swiper-slide:hover .circle {
    width: var(--circle_size);
    height: var(--circle_size);
  }
  .homeAdv_list .swiper-slide:hover .circle::before {
    width: calc(var(--circle_size) + 0.5rem);
    height: calc(var(--circle_size) + 0.5rem);
  }
  .homeAdv_list .swiper-slide:hover em {
    top: -8%;
    width: calc(var(--icon_size) + 0.2rem);
    height: calc(var(--icon_size) + 0.2rem);
    z-index: 0;
  }
  .homeAdv_list .swiper-slide:hover .text h6 {
    color: var(--i_color);
  }
}

.homeAdv_list em {
  transition: top 0.5s ease, width 0.5s ease, height 0.5s ease;
}
.homeAdv_list .circle {
  transition: all 0.5s ease;
}
.homeAdv_list .circle::before {
  transition: all 0.5s 0.5s;
}

.homeAdv-pagination {
  display: none;
}

@media screen and (max-width: 1440px) {
  .homeAdv .i_tit h6 {
    width: 60%;
  }

  .homeAdv_list .text h6 {
    width: 100%;
    font-size: 0.22rem;
  }
  .homeAdv_list .text p {
    font-size: 0.15rem;
  }
}

@media screen and (max-width: 1200px) {
  .homeAdv_list em {
    /* width: 0.8rem;
    height: 0.8rem; */
  }
  .homeAdv_list .text {
    margin-top: 0.4rem;
  }
  .homeAdv_list {
    --icon_size: 55px;
  }
}

@media screen and (max-width: 1024px) {
  .core_rd .title_Box {
    margin-bottom: 0.2rem;
  }
  .homeAdv .i_tit h6 {
    width: 80%;
  }

  .homeAdv_list {
    --li_padding: 30px;
    --icon_size: 50px;
    --circle_size: 100px;
  }

  .homeAdv_list .swiper-slide {
    width: 100%;
  }
  .homeAdv_list .text {
    margin-top: 0;
  }
  .homeAdv_list .text h6 {
    font-size: 18px;
  }
  .homeAdv_list .text p {
    font-size: 14px;
  }

  .homeAdv-pagination {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .homeAdv .sectionTit {
    margin-bottom: 24px;
  }
  .homeAdv .i_tit h6 {
    width: 100%;
  }
  .homeAdv-navigation {
    display: none;
  }

  .homeAdv_list {
    --li_padding: 20px;
    --icon_size: 40px;
    --circle_size: 80px;
  }
  .homeAdv_list {
    width: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 560px) {
  .homeAdv .sectionTit {
    margin-bottom: 6px;
  }
  .homeAdv_list {
    --icon_size: 30px;
  }
  .homeAdv_list em {
    top: 0.3rem;
    z-index: 1;
  }
}

/* 研发介绍 */

.adv_cont {
  background: url(https://lingjuimg.com/wp-content/uploads/ZhenLian/2025/07/adv_pattern.webp)
    no-repeat;
  background-position: -10% -180%;
  position: relative;
}

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

.adv_cont .title_Box::before {
  left: 0;
  transform: none;
}

.adv_tit {
  width: 40%;
  position: relative;
}

.adv_cont .btn_box iconify-icon {
  transform: rotate(-45deg);
}

.adv_tit img {
  display: block;
  max-width: 100%;
}

.adv_list {
  width: 46%;
  margin-left: auto;
  position: relative;
}
.adv_list dt {
  background: #fbf9f9;
  box-sizing: border-box;
  padding: 0.3rem 0.4rem;
  -webkit-border-radius: 0.2rem;
  border-radius: 0.06rem;
  cursor: pointer;
}
.adv_list dt:not(:last-child) {
  margin-bottom: 0.3rem;
}

.adv_list span {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.3rem;
}
.adv_list .order {
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  background: -webkit-linear-gradient(
    top,
    rgb(252, 147, 3, 0),
    rgb(252, 147, 3, 0.2)
  );
  background: linear-gradient(
    to bottom,
    rgb(252, 147, 3, 0),
    rgb(252, 147, 3, 0.2)
  );
  -webkit-border-radius: 50%;
  border-radius: 50%;
  box-sizing: border-box;
  border: 4px solid #fff;
  position: relative;
}
.adv_list .order i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.32rem;
}
.adv_list h4 {
  color: var(--text_color);
}

.adv_list p {
  display: none;
  margin-top: 10px;
  color: #666;
}

.adv_list dt.active {
  background: #fff9f2;
}
.adv_list dt.active span {
  gap: 0 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.adv_list dt.active h4 {
  color: var(--i_color);
}

.adv_list dt.active .order {
  width: 0;
  height: 0;
  border: none;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.adv_list dt.active .order i {
  font-size: 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.adv_list dt.active p {
  display: block;
}

@media screen and (max-width: 1440px) {
  .adv_cont {
    background-position: -30% -45%;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1024px) {
  .adv_cont {
    background-position: center;
  }
  .adv_tit {
    width: 100%;
  }
  .adv_tit img {
    max-width: 400px;
    width: 100%;
  }
  .adv_list {
    width: 100%;
    margin: 50px 0 0;
  }
  .adv_list dt {
    padding: 20px 30px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
  .adv_list dt:not(:last-child) {
    margin-bottom: 16px;
  }
  .adv_list .order {
    width: 50px;
    height: 50px;
  }
  .adv_list .order i {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .adv_tit img {
    max-width: 300px;
  }
}
@media screen and (max-width: 560px) {
  .adv_list dt {
    padding: 20px 20px;
  }
  .adv_list span {
    gap: 0 14px;
  }
  .adv_list .order {
    width: 40px;
    height: 40px;
  }
  .adv_list .order i {
    font-size: 20px;
  }
  .adv_list p {
    font-size: 14px;
  }
}

/* 服务流程 */
.process {
  background: url(https://lingjuimg.com/wp-content/uploads/ZhenLian/2025/07/process_ba.webp)
    no-repeat center;
  background-size: cover;
}

.process .title_Box p {
  color: #fff;
}

.p_down {
  display: flex;
}

.pd_lift {
  width: 40%;
  max-height: min-content;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.pd_lift p {
  width: 70%;
  color: #fff;
}

.pd_lift span {
  display: block;
  color: #fff;
}

.pd_lift img {
  width: 100%;
}

.pd_right {
  width: 50%;
}

.pd_right li {
  width: 100%;
  display: flex;
  color: #fff;
  position: relative;
  box-sizing: border-box;
}

.pd_right li p {
  min-width: 1.3rem;
  font-size: 0.66rem;
  position: relative;
  padding-right: 6%;
  padding-bottom: 12%;
}

.pd_right li > div {
  margin-left: 0.6rem;
  box-sizing: border-box;
}

.pd_right li p::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  background: var(--i_color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -3%;
  z-index: 2;
}

.pd_right li p::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px dashed rgb(255, 255, 255, 50%);
  z-index: 1;
}

.pd_right li h4 {
  margin-top: 0.1rem;
}

@media screen and (max-width: 1440px) {
  .pd_right {
    width: 53%;
  }
}
@media screen and (max-width: 1366px) {
  .pd_right li p {
    padding-right: 3%;
  }
}
@media screen and (max-width: 1200px) {
  .pd_right {
    width: 55%;
  }
  .pd_right li p {
    padding-right: 2%;
  }
  .pd_right li div {
    margin-left: 0.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .p_down {
    flex-wrap: wrap;
  }
  .pd_lift,
  .pd_right {
    width: 100%;
  }
  .pd_lift {
    position: static;
  }
  .pd_lift p {
    width: 100%;
  }
  .pd_lift img {
    width: 42%;
  }
  .pd_right li p {
    min-width: 0.8rem;
    font-size: 0.4rem;
  }
}

@media screen and (max-width: 768px) {
  .pd_right li p::before,
  .pd_right li p::after {
    display: none;
  }

  .pd_right li h3 {
    font-size: 0.18rem;
  }
  .pd_right li h4 {
    font-size: 0.15rem;
  }
}

@media screen and (max-width: 560px) {
  .pd_right ul {
    display: flex;
    flex-direction: column;
    gap: 0.2rem 0;
  }
  .pd_right li p {
    min-width: 0.45rem;
    padding-bottom: 0;
    font-size: 0.3rem;
  }
}

/* 眼镜视频 */

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

.gv_list_container {
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.gv_list_container.collapsed {
  max-height: 430px;
}

.gv_list_container.expanded {
  max-height: 2000px;
}

.icon-bottom.rotated {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.gv_list li {
  width: 32.66%;
  box-sizing: border-box;
  padding: 0.2rem;
  position: relative;
  background: -webkit-linear-gradient(top, transparent, #000);
  cursor: pointer;
  overflow: hidden;
}

.gv_list li a {
  width: 100%;
  height: 100%;
  display: block;
}

.gv_list li icon {
  width: 0.5rem;
  height: 0.5rem;
  font-size: 0.2rem;
  color: #fff;
  margin-bottom: 2.65rem;
  background-color: var(--i_color);
  box-sizing: border-box;
  border-radius: 50%;
}

.gv_list li p {
  color: #fff;
}

.gv_list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.6s ease;
}

.gv_list li:hover img {
  transform: scale(1.2);
}

.glasses_videos .button_su {
  border-radius: 5rem;
}

.glasses_videos .btn_box {
  border-radius: 5rem;
}

@media screen and (max-width: 1440px) {
  .gv_list_container.collapsed {
    max-height: 350px;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .gv_list li {
    width: 49.5%;
  }
  .gv_list_container.collapsed {
    max-height: 325px;
  }
  .gv_list li icon {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .gv_list li {
    width: 100%;
  }
  .gv_list li icon {
    width: 0.4rem;
    height: 0.4rem;
  }
  .gv_list li p {
    font-size: 0.15rem;
  }
  .gv_list_container.collapsed {
    max-height: 330px;
  }
}

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

/* 关于我们 */
.about_us_bac {
  box-sizing: border-box;
  padding-top: 0.4rem;
  overflow: hidden;
}
.about_us {
}

.ab_top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2%;
  margin: 0.55rem 0 0.15rem 0;
}

.ab_top p {
  color: #111;
}

.ab_top img {
  cursor: pointer;
}

.about_us_text {
  font-size: 0.18rem;
  line-height: 0.3rem;
  font-weight: 100;
  color: #111;
  z-index: 2;
}

.fadein__pic_box .abtxt01,
.fadein__pic_box .abtxt02,
.fadein__pic_box .abtxt03 {
  font-size: 1.5rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 10%);
  position: absolute;
  z-index: 1;
}

.fadein__pic_box .abtxt01 {
  top: 8%;
  right: 0;
  font-weight: bold;
}

.fadein__pic_box .abtxt02 {
  top: 25%;
  left: 5%;
}

.fadein__pic_box .abtxt03 {
  top: 36.5%;
  right: 12%;
}

.fadein__pic_video img {
  position: relative;
  z-index: 2;
}

.fadein__pic_box .ab_ba {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: url(https://lingjuimg.com/wp-content/uploads/ZhenLian/2025/07/ab_us_num.webp)
    no-repeat center;
  background-size: cover;
}

.about_us_bac .i_data {
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgb(0, 0, 0));
  z-index: 10;
}

@media screen and (min-width: 1025px) {
  .fadein__pic_box {
    height: calc(200vh + var(--header_height));
    position: relative;
  }

  .fadein__pic {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
  }
  .fadein__pic.fixed {
    position: fixed;
  }
  .fadein__pic.fixed_bottom {
    top: initial;
    bottom: 0;
  }
  .fadein__pic_mask {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
    height: calc(100% + 2px);
    object-fit: cover;
    z-index: 2;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .fadein__pic_video {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .fadein__pic_video img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60%;
    height: 96%;
    object-fit: cover;
  }
}

@media screen and (max-width: 1024px) {
  .fadein__pic_box {
    margin-top: 0.4rem;
  }
  .fadein__pic_mask {
    display: none;
  }
  .fadein__pic_video {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .fadein__pic_video::before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
  }
  .fadein__pic_video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 1440px) {
  .fadein__pic_video img {
    width: 80%;
    height: 90%;
  }
  .about_us_text {
    font-size: 0.16rem;
    line-height: 0.28rem;
  }
}
@media screen and (max-width: 1366px) {
  .fadein__pic_box .abtxt01 {
    top: 10%;
  }
  .fadein__pic_box .abtxt01,
  .fadein__pic_box .abtxt02,
  .fadein__pic_box .abtxt03 {
    font-size: 0.9rem;
  }
  .fadein__pic_box .abtxt02 {
    left: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .about_us_text {
    font-size: 0.14rem;
    line-height: 0.26rem;
  }
  .fadein__pic_box .abtxt01 {
    top: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .fadein__pic_video img {
    width: 100%;
    height: 100%;
  }
  .fadein__pic_box .abtxt01 {
    top: 0;
  }
  .fadein__pic_box .abtxt02 {
    left: 0;
  }
  .fadein__pic_box .abtxt03 {
    top: 36%;
    right: 0;
  }
  .ab_top {
    flex-wrap: wrap;
    gap: 0.1rem 0;
    margin: 0.3rem 0 0.1rem 0;
  }

  .ab_top p {
    width: 100%;
    text-align: center;
  }

  .ab_top img {
    height: 0.3rem;
  }

  .fadein__pic_box .abtxt01,
  .fadein__pic_box .abtxt02,
  .fadein__pic_box .abtxt03 {
    font-size: 0.7rem;
  }
  .about_us_bac .i_data {
    position: relative;
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 768px) {
  .about_us_text {
    margin-top: 0.2rem;
  }
  .fadein__pic_box .abtxt01,
  .fadein__pic_box .abtxt02,
  .fadein__pic_box .abtxt03 {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 560px) {
  .fadein__pic_box .abtxt01,
  .fadein__pic_box .abtxt02,
  .fadein__pic_box .abtxt03 {
    font-size: 0.3rem;
  }
  .about_us_bac .i_data {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 425px) {
}

/* 优势切换 */
.switch_btn {
  display: flex;
  gap: 0.2rem 2%;
  flex-wrap: wrap;
}

.switch_btn li {
  width: 32%;
  position: relative;
  padding-bottom: 0.2rem;
  cursor: pointer;
  color: var(--text_color);
}

.switch_btn li::before {
  width: 100%;
  height: 2px;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #d8d8d8;
}

.switch_btn li::after {
  width: 0;
  height: 2px;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--i_color);
  transition: all 0.6s ease;
}

.switch_btn li img {
  display: none;
}

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

.switch_imgs {
  font-size: 0;
  position: relative;
  padding-bottom: 38%;
  border-radius: 0.05rem;
}

.switch_imgs img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(-3%);
  transition: all 0.6s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.05rem;
}

.switch_imgs .active {
  opacity: 1;
  transform: translateY(0);
}

.switch_btn .active::after {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .switch_btn li {
    width: 100%;
    padding-left: 0.2rem;
    padding-top: 0.2rem;
    padding-bottom: 30%;
    color: #222;
  }
  .switch_btn li img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.65;
  }

  .switch_btn li::before,
  .switch_btn li::after {
    display: none;
  }
  .switch_imgs {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .switch_btn li {
    font-size: 0.15rem;
  }
}

/* 卖点展示 */
.selling_points {
  position: relative;
  overflow: hidden;
  background: url(https://lingjuimg.com/wp-content/uploads/ZhenLian/2025/07/ab_SellingPoints.webp)
    no-repeat center;
  background-size: cover;
  overflow: hidden;
}

.sp_imgtxt {
  width: 64%;
  position: absolute;
  bottom: -12%;
  left: -6%;
}

.selling_points .title_Box p {
  color: #fff;
}

@keyframes ooo {
  0% {
    opacity: 0;
    transform: translateY(0.1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.strength_box {
  box-sizing: border-box;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.strength_left {
  width: 30%;
}

.strength_ul {
  margin-bottom: 0.5rem;
  z-index: 20;
  position: relative;
}

.strength_ul li {
  animation: ooo 0.7s ease;
  color: #fff;
}

/* .strength_ul li img {
  width: 0.55rem;

  height: 0.55rem;

  object-fit: contain;
} */

.strength_ul li h2 {
  font-size: 0.66rem;
}

.strength_ul li h3 {
  font-size: 0.3rem;
  color: var(--txt_color1);
  line-height: 120%;
  margin: 0.2rem 0 0.15rem 0;
}

.strength_ul li h4 {
  font-size: 0.18rem;
  line-height: 0.36rem;
  box-sizing: border-box;
  padding-right: 2%;
  overflow: auto;
}

/*滚动条*/

.strength_ul li h4::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

.strength_ul li h4::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--i_color);
}

.strength_ul li h4::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: #f1f1f1;
}

.strength_right {
  box-sizing: border-box;

  padding-right: 2rem;

  position: relative;
}

.strength_right_dl {
  width: 5.3rem;
}

.strength_right_dl dt {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 50%;
  animation: ooo 0.7s ease;
}

.strength_right_dl dt::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

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

.strength_right_box {
  position: relative;
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  width: 3.5rem;
}

.strength_right_ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 1px dashed rgba(174, 174, 174, 0.8);
}

.strength_right_ul li {
  width: 60%;
  position: absolute;
  font-size: 0.16rem;
  color: #fff;
  line-height: 150%;
  text-transform: capitalize;
  transform: translate(-50%, -50%);
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
}

.strength_right_ul li:nth-child(1) {
  top: -0.25rem;
  left: 50%;
  padding-bottom: 0.18rem;
  white-space: nowrap;
}

.strength_right_ul li:nth-child(2) {
  top: 50%;
  right: 0rem;
  transform: translate(100%, -50%);
  padding-left: 0.18rem;
}

.strength_right_ul li:nth-child(3) {
  top: calc(100% + 0.25rem);
  left: 50%;
  padding-top: 0.18rem;
  white-space: nowrap;
}

.strength_right_ul li:nth-child(4) {
  top: 50%;
  left: 0rem;
  transform: translate(-100%, -50%);
  padding-right: 0.18rem;
}

.strength_right_ul li::after {
  content: "";

  display: block;

  position: absolute;

  width: 0.15rem;

  height: 0.15rem;

  border: 0.02rem solid var(--i_color);

  box-sizing: border-box;

  border-radius: 50%;

  background-color: var(--i_color);
  z-index: 20;
}

.strength_right_ul li:nth-child(1)::after {
  top: 100%;

  left: 50%;

  transform: translate(-50%, -50%);
}

.strength_right_ul li:nth-child(2)::after {
  top: 50%;

  left: 0%;

  transform: translate(-50%, -50%);
}

.strength_right_ul li:nth-child(3)::after {
  top: 0%;

  left: 50%;

  transform: translate(-50%, -50%);
}

.strength_right_ul li:nth-child(4)::after {
  top: 50%;

  left: 100%;

  transform: translate(-50%, -50%);
}

.quan {
  width: 125%;
  height: 125%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.quan circle {
  fill: none;

  stroke-width: 2.5;

  transform: rotate(-90deg);

  stroke-dashoffset: 1414.5; /*  偏移 */

  transform-origin: center;

  stroke-dasharray: 1886;

  transition: stroke-dashoffset 1s linear; /* 平滑过渡 */
  z-index: 2;
}

.strength_right_ul li.current {
  color: var(--i_color);
}

.strength_right_ul li.current::after {
  background-color: var(--i_color);
}

.selling_points .btn_box {
  background-color: transparent;
  border: 1px solid var(--i_color);
}

.selling_points .btn_box span,
.selling_points .btn_box iconify-icon {
  color: var(--i_color);
}

.selling_points .btn_box:hover span,
.selling_points .btn_box:hover iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1600px) {
  .strength_ul li h3 {
    font-size: 0.3rem;
  }

  .strength_right_box,
  .strength_right_dl {
    width: 4.5rem;
  }

  .strength_right_ul li {
    font-size: 0.18rem;
  }
}

@media screen and (max-width: 1440px) {
  .sp_imgtxt {
    bottom: -7%;
  }
  .strength_right_box,
  .strength_right_dl {
    width: 3rem;
  }

  .strength_right_ul li {
    font-size: 0.16rem;
  }

  .strength_bac {
    padding: 0.8rem 0 1.4rem 0;
  }
}

@media screen and (max-width: 1200px) {
  .sp_imgtxt {
    bottom: -1%;
  }
  .strength_right_box,
  .strength_right_dl {
    width: 2.6rem;
  }

  .strength_ul li h3 {
    font-size: 0.25rem;
  }

  .strength_ul li h4 {
    font-size: 0.16rem;

    line-height: 0.3rem;
  }

  .strength_bac {
    padding: 0.8rem 0 1rem 0;
  }
}

@media screen and (max-width: 1024px) {
  .sp_imgtxt {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .strength_left {
    width: 100%;
  }
  .strength_box {
    padding-top: 0.4rem;
    padding-bottom: 0.3rem;
  }

  .strength_ul {
    display: flex;
    flex-direction: column;
    gap: 0.3rem 0;
    margin-bottom: 0.3rem;
  }

  .strength_ul li {
    display: block !important;
    padding-bottom: 0.1rem;
    border-bottom: 1px solid #e5e5e5;
  }

  .strength_ul li h2 {
    font-size: 0.24rem;
  }

  .strength_ul li h3 {
    font-size: 0.16rem;
    margin: 0.1rem 0;
  }

  .strength_ul li h4 {
    font-size: 0.15rem;
    line-height: 1.25;
  }

  .strength_right {
    display: none;
  }
}

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

.pd_header {
  background: #fff !important;
}

/* Breadcrumb */
.in_position_p {
  padding: 0.2rem 0;
  background: #f4f4f4;
  position: relative;
}
.in_position_p .wrap {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.in_position_p a {
  display: block;
  font-size: 15px;
  color: #333;
  position: relative;
  line-height: 20px;
}
.in_position_p a:first-child {
  padding-left: 0.26rem;
}
.in_position_p a:first-child::before {
  content: "";
  position: absolute;
  top: -6%;
  left: 0;
  width: 18px;
  height: 18px;
  background: url(static/imgs/home.webp) no-repeat center;
  background-size: contain;
}
.in_position_p a:not(:last-child):after {
  content: ">";
  margin: 0 4px;
  color: #555;
}
.in_position_p a:last-child {
  color: var(--i_color) !important;
}
.in_position_p a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 1024px) {
  .in_position_p {
    padding: 0.16rem 0;
  }
  .in_position_p a {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .in_position_p {
    padding: 0.12rem 0;
  }
  .in_position_p a {
    font-size: 13px;
  }
}

.p_data {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 5%;
}

/* atlas */
.p_atlas {
  flex-shrink: 0;
  width: 37%;
  box-sizing: border-box;
  position: relative;
}
.p_atlas_list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid rgb(51, 51, 51, 20%);
  border-radius: 0.06rem;
  /* padding: 0 0.4rem; */
}
.p_atlas_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.p_atlas_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.p_atlas_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p_atlas_list .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* thumbnail */
.p_thumbnail_list {
  width: 100%;
  margin: 0.2rem auto 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.p_thumbnail_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.p_thumbnail_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.p_thumbnail_list figure {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid rgb(51, 51, 51, 20%);
  border-radius: 0.06rem;
}
.p_thumbnail_list figure::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p_thumbnail_list figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p_thumbnail_list .swiper-slide-thumb-active figure {
  border: 1px solid var(--i_color);
}

.thumbnail-prev,
.thumbnail-next {
  position: absolute;
  top: 40%;
  width: 0.4rem;
  height: 0.4rem;
  background-color: #fff;
  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;
  border-radius: 50%;
  border: 1px solid var(--i_color);
}
.thumbnail-prev {
  left: -3%;
}
.thumbnail-next {
  right: -3%;
}
.thumbnail-prev iconify-icon,
.thumbnail-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.25rem;
  color: var(--i_color);
}
.p_atlas .swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

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

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

.thumbnail-pagination {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  text-align: center;
  padding: 2px 6px;
  z-index: 2;
}
.thumbnail-pagination,
.thumbnail-pagination span {
  font-size: 14px;
  display: none;
}
.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;
  }

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

  .thumbnail-pagination,
  .thumbnail-pagination span {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 560px) {
  .p_atlas_list {
    width: 100%;
  }
}

.p_title {
  width: 58%;
}

.p_title h1 {
  color: #111;
  position: relative;
  padding-bottom: 0.1rem;
}

.p_title h1::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.02rem;
  background-color: #fc9303;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.p_price {
  margin: 0.38rem 0;
  /* display: flex; */
  color: #111;
}

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

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

.p_data .p_btn .pd_btn .btn_box {
  background-color: transparent;
  border: 1px solid var(--i_color);
}

.p_data .p_btn .pd_btn .btn_box span {
  color: var(--i_color);
}

.p_data .p_btn .pd_btn .btn_box iconify-icon {
  color: var(--i_color);
}

.p_data .p_btn .pd_btn:hover .btn_box span {
  color: #fff;
}

.p_data .p_btn .pd_btn:hover .btn_box iconify-icon {
  color: #fff;
}

.p_share {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.1rem;
}
.p_share dd {
  font-size: 0.18rem;
  color: #111;
}
.p_share dt {
}
.p_share iconify-icon {
  font-size: 0.26rem;
  color: #999;
}
.p_share a:hover iconify-icon {
  color: var(--i_color);
}

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

@media screen and (max-width: 768px) {
  .p_price {
    margin: 0;
  }
}

@media screen and (max-width: 560px) {
  .p_price {
    flex-wrap: wrap;
  }
  .p_price span {
    width: 100%;
  }
  .pMenu {
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
  }
  .p_share {
    margin: 20px 0 0;
    width: 100%;
  }
  .p_share iconify-icon {
    font-size: 22px;
  }
}

.pd_transition {
  width: 100%;
  font-size: 0;
}

/* 产品详情介绍 */
.pd_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.pd_box .cat_nav_tit {
  margin-top: 0;
}

.pc_left {
  width: 73%;
}

.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);
  gap: 0 8%;
}

.pc_left .tab {
  padding: 10px 0;
  cursor: pointer;
  color: #111;
}

.pc_left .tab.active {
  color: var(--i_color);
  position: relative;
}

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

.pc_left .tab-content {
}

.pc_left .content {
  display: none;
}

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

.tab-content > article {
  line-height: 1.8;
}

/* 详情页通用 */
.pd_introduction h3 {
  color: var(--i_color);
  position: relative;
  font-weight: normal;
  display: flex;
  gap: 0 0.1rem;
}

.pd_introduction h3::before,
.pd_introduction h3::after {
  content: "";
  display: block;
  width: 2px;
  height: 0.33rem;
  transform: rotate(25deg);
}

.pd_introduction h3::before {
  background-color: #f64e45;
}

.pd_introduction h3::after {
  background-color: var(--i_color);
}

.pd_introduction article {
  line-height: 1.5;
  color: #111;
}

.pd_introduction article img {
  width: 100%;
  margin-top: 0.2rem;
}

/* FAQ */
.faq * {
  padding: 0;
  list-style: none;
  margin: 0;
}

.faq_box {
  display: flex;
  flex-direction: column;
  gap: 0.45rem 0;
}

.faq_box li {
  border-bottom: 1px solid #d3d3d3;
  box-sizing: border-box;
  padding: 0 0.3rem 0.3rem 0.4rem;
  position: relative;
}

.faq_box li::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  position: absolute;
  border-radius: 50%;
  top: 0.1rem;
  left: 0;
  background-color: var(--i_color);
}

.faq_box p {
  color: #111111;
}

.faq_box li span {
  display: block;
  color: #666666;
  margin-top: 0.2rem;
}

@media screen and (max-width: 1440px) {
  .pc_left {
    width: 70%;
  }
}

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

@media screen and (max-width: 768px) {
  .faq_box li {
    padding: 0 0.3rem 0.15rem 0.3rem;
  }
  .faq_box p {
    font-size: 0.16rem;
  }

  .faq_box li span {
    font-size: 0.14rem;
    margin-top: 0.1rem;
  }
}

@media screen and (max-width: 560px) {
  .pc_left .tab {
    font-size: 0.16rem;
  }
}

/* TAG */
.p_tags {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.06rem 0;
}
.p_tags > p {
  margin-right: 12px;
  font-size: 18px;
}
.p_tags a {
  display: block;
  margin-right: 0.2rem;
  font-size: 14px;
  box-sizing: border-box;
}
.p_tags a:hover {
  color: var(--i_color);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .p_tags > p {
    font-size: 15px;
  }
  .p_tags a {
    font-size: 13px;
  }
}

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

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

.pd_i_hot {
  background-color: #fbfbfb;
}

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

.P_search {
}

.psea_box {
  width: 100%;
  box-sizing: border-box;
  padding: 0.35rem 0 0.35rem 0.15rem;
  border-bottom: 1px solid rgb(51, 51, 51, 20%);
  display: flex;
  align-items: center;
}

.psea_box #Psearchform {
  width: 100%;
  display: flex;
  align-items: center;
}

.psea_box .P_search_btn {
  font-size: 0;
  width: 0.26rem;
  height: 0.26rem;
  background: url(static/imgs/search.webp) no-repeat center;
  cursor: pointer;
}

.psea_box i {
  width: 1px;
  height: 32px;
  display: block;
  background-color: #d8d8d8;
  margin: 0 0.22rem;
}

.psea_box .P_search_ipt {
  width: 92%;
  padding: 0.1rem 0;
}

.psea_box .P_search_ipt::placeholder {
  color: #999;
  font-size: 0.2rem;
  opacity: 1;
}

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

@media screen and (max-width: 560px) {
  .psea_box .P_search_ipt::placeholder {
    font-size: 0.16rem;
  }
}

/* Category List */
.cat_page {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
}

.cat_nav {
  width: 23%;
  position: relative;
}

.cat_nav_tit {
  margin-top: 0.35rem;
  margin-bottom: 0.24rem;
}
.cat_nav_tit h4 {
  font-size: 0.32rem;
  color: #111;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
}
.cat_nav_list li {
  border-radius: 0.06rem;
  box-sizing: border-box;
  margin: 0 0 0.2rem;
  border: 1px solid rgb(51, 51, 51, 20%);
}
.cat_nav_list li:last-child {
  margin-bottom: 0;
}

.cat_fold_tit {
  padding: 0 0.1rem 0 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
  border-radius: 0.06rem;
  position: relative;
}
.cat_fold_tit a {
  width: 100%;
  padding: 0.18rem 0;
  font-size: 0.18rem;
  font-weight: 100;
  color: #111;
}
.cat_fold_tit iconify-icon {
  flex-shrink: 0;
  padding: 0.1rem;
  margin-left: auto;
  font-size: 0.26rem;
  color: #555;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.active .cat_fold_tit {
  background: #fdc981;
}
.active .cat_fold_tit a,
.active .cat_fold_tit iconify-icon {
  color: #fff;
}
.active .cat_fold_tit iconify-icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.cat_fold_sub {
  display: none;
  box-sizing: border-box;
  padding: 0.3rem 0.3rem 0.26rem;
  margin-top: -0.16rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
}
.cat_fold_sub dt {
  border-bottom: 1px solid #ddd;
}
.cat_fold_sub a {
  padding: 0.12rem 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  color: #111;
  transition: all 0.5s ease;
}
.cat_fold_sub i {
  flex-shrink: 0;
  width: 0.16rem;
  height: 0.16rem;
  box-sizing: border-box;
  border: 1px solid #aaa;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}
.cat_fold_sub iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.1rem;
  color: #555;
}
.cat_fold_sub p {
  font-size: 0.16rem;
}

.cat_nav_list .active {
  border-color: rgb(252, 147, 3, 50%);
}

.cat_fold_sub .active {
  border-color: var(--i_color);
}

.cat_fold_sub dt:hover i,
.cat_fold_sub dt.active i {
  border-color: var(--i_color);
}
.cat_fold_sub dt:hover a,
.cat_fold_sub dt.active a {
  color: var(--i_color);
}
.cat_fold_sub dt:hover p,
.cat_fold_sub dt.active p {
  color: var(--i_color);
}

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

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

  .cat_nav_list li {
    margin: 0 0 14px;
  }
  .cat_fold_tit {
    padding: 0 4px 0 18px;
  }
  .cat_fold_tit a {
    font-size: 15px;
  }
  .cat_fold_tit iconify-icon {
    font-size: 22px;
  }

  .cat_fold_sub {
    padding: 24px 28px 20px;
  }
  .cat_fold_sub p {
    font-size: 14px;
  }

  .cat_nav_list {
    padding: 34px 20px 20px;
  }
}

.cat_post_show {
  width: 73%;
  margin-left: auto;
}
@media screen and (max-width: 1440px) {
  .cat_post_show {
    width: 71%;
  }
}
@media screen and (max-width: 1024px) {
  .cat_post_show {
    width: 100%;
  }
}

.p_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.p_list li {
  width: 33.33%;
  box-sizing: border-box;
  border: 1px solid var(--border_color);
  overflow: hidden;
}

.p_list a {
  display: block;
  padding: 0.2rem;
  width: 100%;
  box-sizing: border-box;
}

.p_category {
  margin-bottom: 0.2rem;
  max-width: 100%;
  display: inline-block;
  border: 1px solid rgb(51 51 51 / 20%);
  border-radius: 200px;
}
.p_category h5 {
  padding: 0.1rem 0.2rem;
  font-size: 0.16rem;
  color: var(--i_color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.p_pic {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.p_pic::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p_pic img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_list figcaption {
}
.p_list figcaption p {
  overflow: hidden;
  font-weight: 100;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p_list li:hover {
  border-color: var(--i_color);
}
.p_list li:hover .p_pic img {
  transform: translate(-50%, -50%) scale(1.1);
}
.p_list li:hover p {
  color: var(--i_color);
}

@media screen and (max-width: 768px) {
  .p_list {
    gap: 0.3rem 2%;
  }
  .p_list li {
    width: 49%;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }

  .p_list figcaption {
    padding: 0 0.1rem;
  }
}
@media screen and (max-width: 560px) {
  .p_list {
    gap: 16px 4%;
  }
  .p_list li {
    width: 48%;
  }
  .p_list a {
    padding: 0.14rem;
  }
  .p_category h5 {
    padding: 0.05rem 0.15rem;
    font-size: 0.13rem;
  }
  .p_list figcaption p {
    font-size: 12px;
  }
}

/* Paging */
.in_paging {
  --size: 36px;
  --border_radius: 200px;
  --curr_color: var(--i_color);
}
.in_paging ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.in_paging li {
  min-width: var(--size);
  margin: 0 4px;
}
.in_paging a,
.in_paging span {
  display: block;
  padding: 0 10px;
  height: var(--size);
  line-height: calc(var(--size) - 2px);
  font-size: 14px;
  color: #666;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #ccc;
  -webkit-border-radius: var(--border_radius);
  border-radius: var(--border_radius);
  overflow: hidden;
}
.in_paging i {
  margin-top: 14px;
  width: 100%;
  font-size: 13px;
  color: #888;
}
.in_paging a:hover,
.in_paging .curr_page a,
.in_paging .curr_page span {
  border-color: var(--curr_color) !important;
  background: var(--curr_color);
  color: #fff !important;
}

@media screen and (max-width: 560px) {
  .in_paging {
    --size: 30px;
  }
}

/* banner */

.ba02_txt {
  width: 85%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.i_banner02_text {
  top: 22%;
  left: 9%;
  position: absolute;
}

.i_banner02_text h3 {
  color: #111111;
  font-weight: 550;
  margin-bottom: 0.9rem;
}

.i_banner02_text h3 p {
  color: var(--i_color);
  font-weight: 550;
}

.i_banner02_text .btn_box {
  background-color: #fff;
  border: 1px solid var(--i_color);
}

.i_banner02_text .btn_box span {
  color: var(--i_color);
}

.i_banner02_text .btn_box iconify-icon {
  color: var(--i_color);
}

.i_banner02_text .button_su:hover .btn_box span {
  color: #fff;
}

.i_banner02_text .button_su:hover .btn_box iconify-icon {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .i_banner02_text h3 {
    margin-bottom: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .i_banner02_text h3 {
    margin-bottom: 0.2rem;
  }
}

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

.ba03_txt {
  width: 85%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.i_banner03_text h3 {
  text-align: center;
  font-weight: 550;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 1px #764707;
}

.i_banner03_text .btn_box {
  background-color: #fff;
}

.i_banner03_text .btn_box span {
  color: var(--i_color);
}

.i_banner03_text .btn_box iconify-icon {
  color: var(--i_color);
}

.i_banner03_text .button_su:hover .btn_box span {
  color: #fff;
}

.i_banner03_text .button_su:hover .btn_box iconify-icon {
  color: #fff;
}

@media screen and (max-width: 560px) {
  .i_banner03_text h3 {
    font-size: 0.16rem;
  }
}
