/*

Theme Name: tianjiao

Version: 1.0

Description: 安徽领聚数字作为Google中国区核心合作伙伴,拥有安徽省唯一的一家Google出海体验中心,为安徽本土化外贸企业出海提供一站式服务——网站搭建,谷歌SEO优化,谷歌竞价,谷歌SNS社媒营销等。

Author: 版权所有：安徽领聚

*/

@charset "utf-8";

:root {
  /* Global Color */
  --i_color: #99201e;

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

  --search_height: 0.32rem;
  --header_top: 0.21rem;

  --txt_color1: #333;
  --txt_color2: #666;

  --border_color: #d8d8d8;
}

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

/* 通用 */

.btn_box {
  display: table;
}

.btn__,
.btn__02 {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: var(--i_color);
  border: 1px solid var(--i_color);
  border-radius: 4px;
  padding: 0.14rem 0.24rem;
  color: #fff;
  transition: all 0.5s ease;
}

.btn__02 {
  background-color: transparent;
  color: var(--txt_color1);
  border-color: var(--txt_color1);
}

.btn__ p,
.btn__02 p {
  white-space: nowrap;
}

.btn__ icon,
.btn__02 icon {
  font-size: 0.1rem;
  margin-left: 0.25rem;
}

.btn_box:hover .btn__ {
  background-color: transparent;
  border-color: #fff;
}

.btn_box:hover .btn__02 {
  background-color: var(--i_color);
  border-color: var(--i_color);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .btn__,
  .btn__02 {
    padding: 0.05rem 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .btn__,
  .btn__02 {
    padding: 0.02rem 0.12rem;
  }
  .btn__ p,
  .btn__02 p {
    font-size: 0.14rem;
  }
  .btn__ icon,
  .btn__02 icon {
    font-size: 0.07rem;
  }
}

/* title */

.tit_box {
}

.tit_box p {
  margin-top: 0.27rem;
  font-family: Arial;
}

@media screen and (max-width: 560px) {
  .tit_box p {
    font-size: 0.14rem;
    margin-top: 0.1rem;
  }
}

/* 内页banner */

.banner__ {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner__ img {
  width: 100vw;
}
.banner__text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
}
.banner__text h2 {
  font-size: 0.84rem;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .banner__text h2 {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .banner__text h2 {
    font-size: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .banner__text h2 {
    font-size: 0.2rem;
  }
}

/* Breadcrumb */
.in_position {
  position: relative;
}
.in_position .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.in_position a {
  display: block;
  font-size: 16px;
  color: #fff;
  position: relative;
  line-height: 20px;
  text-transform: uppercase;
}
.in_position a:first-child {
  padding-left: 0.26rem;
}
.in_position a:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 20px;
  height: 20px;
  background: url(static/imgs/home.webp) no-repeat center;
  background-size: contain;
}

.in_position a:not(:last-child):after {
  content: ">";
  margin: 0 7px;
  color: #fff;
  font-weight: 100;
}

.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;
  }
  .in_position a:first-child {
    padding-left: 0;
  }
  .in_position a:first-child::before {
    display: none;
  }
}

/* --- end --- */

.wrap {
  width: 94vw;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.wrap_l {
  box-sizing: border-box;
  padding-left: 8.4vw;
}
.wrap_r {
  box-sizing: border-box;
  padding-right: 8.4vw;
}
@media screen and (max-width: 1440px) {
  .wrap_l {
    padding-left: 3vw;
  }
  .wrap_r {
    padding-right: 3vw;
  }
}

/* header */

.header_h {
  width: 100%;
  /* height: var(--header_height); */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 20250807;
  background-color: #fff;
}

.header_topBox {
  background: #181818;
}

.header_top {
  box-sizing: border-box;
  padding: 0.1rem 0;
}

.header_top > p {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.outs {
  flex: 1;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  height: var(--header_top);
  box-sizing: border-box;
  align-items: center;
  justify-content: end;
  gap: 0;
  box-sizing: border-box;
}

.outs ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}

.outs > ul span {
  font-size: 14px;
  color: #fff;
  margin-right: 0.2rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  box-sizing: border-box;
}

.outs > ul span a {
  font-size: 14px;
  color: #fff;
}

.outs > ul span::before {
  content: "";
  display: block;
  width: 1px;
  height: 65%;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  background: #464646;
}

.outs > ul a:hover {
  color: var(--i_color);
  text-decoration: underline;
}

.outs .iconbox2 {
  height: var(--header_top);
  display: flex;
  align-items: center;
}

.outs .iconbox2 a {
  margin-left: 0.1rem;
  color: rgb(255, 255, 255, 50%);
  transition: all 0.3s ease;
}

.outs .iconbox2 a:hover {
  color: #fff;
}

header .wrap {
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
}

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

header.fixedHeader {
  box-shadow: 0 4px 10px rgb(153, 32, 30, 10%);
}

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

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

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

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

  .i_nav > li > a {
    display: block;
    font-size: 0.18rem;
    font-weight: bolder;
    color: var(--txt_color1);
    line-height: var(--header_height);
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.6px;
  }

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

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

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

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

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

body.nav-open {
  overflow: hidden;
  height: 100%; /* iOS 保险 */
}

@media screen and (max-width: 1024px) {
  .i_nav {
    display: none;
    position: fixed;
    top: var(--header_height);
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    z-index: 2;
  }
  /*滚动条*/
  .i_nav::-webkit-scrollbar {
    width: 3px;
    height: 8px;
  }
  .i_nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #555;
  }
  .i_nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: #f1f1f1;
  }
  .i_nav > li {
    margin: 0 0 !important;
    border-bottom: 1px solid var(--border_color);
    position: relative;
  }
  .i_nav > .menu-item-has-children span {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 0.44rem;
    height: 0.44rem;
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 48 48"%3E%3Cpath fill="none" stroke="%23555" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="M36 18L24 30L12 18"%2F%3E%3C%2Fsvg%3E')
      no-repeat center;
    background-size: 0.24rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .i_nav > .menu-item-has-children span.on {
    transform: rotate(180deg);
    background-size: 0.24rem;
  }
  .i_nav > li > a {
    padding: 0 3%;
    font-size: 0.16rem;
    color: #222;
    line-height: 0.44rem;
    text-transform: uppercase;
  }
  .i_nav > li > .sub-menu {
    display: none;
  }
  .i_nav > li > .sub-menu li {
    position: relative;
  }
  .i_nav .sub-menu a {
    padding: 0 0.4rem;
    font-size: 16px;
    color: #555;
    line-height: 0.4rem;
    position: relative;
  }
  /* .i_nav .sub-menu li:not(:last-child) {
		border-bottom: 1px solid var(--border_color)
	} */
  .i_nav > li > .sub-menu b {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.4rem;
    height: 0.4rem;
    background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }
  .i_nav > li > .sub-menu b.on {
    background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat
      center;
    background-size: 0.16rem;
  }
  .i_nav .sub-menu .sub-menu {
    display: none;
  }
  .i_nav .sub-menu .sub-menu a {
    padding: 0 0.6rem;
    font-size: 15px;
    color: #888;
    line-height: 0.36rem;
    position: relative;
  }
  .i_nav a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
/* 移动端导航按钮 */
.nav_menu {
  /* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
  position: relative;
  width: 22px;
  height: 16px;
  display: none;
  cursor: pointer;
}
.nav_menu i {
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  background: var(--i_color);
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before,
.nav_menu::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--i_color);
  position: absolute;
  left: 0;
  border-radius: 0.1rem;
  transition: 0.5s;
}
.nav_menu::before {
  top: 0;
}
.nav_menu::after {
  bottom: 0;
}
.nav_menu.on i {
  opacity: 0;
}
.nav_menu.on::before {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
}
.nav_menu.on::after {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -2px;
}
@media screen and (max-width: 1024px) {
  .nav_menu {
    display: block !important;
  }
}
/* 导航下拉 */
.nav_dropdown {
  position: fixed;
  top: var(--top_h);
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 2013;
}
.nav_dropdown_item {
  display: none;
  padding: 0.4rem 0;
}
.nav_dropdown_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0 3%;
}
.nav_dropdown_list dt {
  width: 100%;
  max-width: 3.8rem;
}
.nav_p_cat_name a {
  font-size: 0.2rem;
  color: var(--i_color);
  font-weight: 900;
}
.nav_dropdown_list ul {
  margin-top: 0.2rem;
}
.nav_dropdown_list li {
  position: relative;
  padding-left: 0.24rem;
}
.nav_dropdown_list li::before {
  opacity: 0.5;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 0.2rem;
  height: 0.2rem;
  background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" viewBox="0 0 24 24"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cpath d="M24 0v24H0V0h24ZM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427c-.002-.01-.009-.017-.017-.018Zm.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093c.012.004.023 0 .029-.008l.004-.014l-.034-.614c-.003-.012-.01-.02-.02-.022Zm-.715.002a.023.023 0 0 0-.027.006l-.006.014l-.034.614c0 .012.007.02.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01l-.184-.092Z"%2F%3E%3Cpath fill="currentColor" d="M15.707 11.293a1 1 0 0 1 0 1.414l-5.657 5.657a1 1 0 1 1-1.414-1.414l4.95-4.95l-4.95-4.95a1 1 0 0 1 1.414-1.414l5.657 5.657Z"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E')
    no-repeat center;
  background-size: contain;
}
.nav_dropdown_list li a {
  display: block;
  padding: 0.06rem 0;
  font-size: 0.15rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav_dropdown_list li:hover a {
  margin-left: 8px;
  color: var(--i_color);
}

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

/* search */

.search_cont {
  --search_height: 0.32rem;
}

.top_citation {
  font-size: 0.16rem;
  font-weight: bold;
  height: var(--search_height);
  /* box-sizing: border-box; */
  border: 1px solid var(--i_color);
  padding: 0.05rem 0.1rem;
  color: #fff;
  background-color: var(--i_color);
  transition: all 0.5s ease;
}

.top_search_btn {
  display: none;
}

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

.search_ipt::placeholder {
  font-size: 0.16rem;
  color: #999;
  opacity: 1;
}

.search_btn {
  font-size: 0;
  color: #999;
  width: var(--search_height);
  height: var(--search_height);
  background: url(static/imgs/search_btn.webp) no-repeat center;
  background-size: 0.24rem;
  cursor: pointer;
  margin-right: 0.04rem;
}

.top_citation:hover {
  background-color: transparent;
  color: var(--i_color);
}
@media screen and (max-width: 1440px) {
  .top_citation {
    font-size: 0.14rem;
  }
}

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

  .top_language_btn .icon-xiala-tianchong {
    display: none;
  }

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

.top_language {
  position: relative;
}

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

.top_language_btn .icon-yuyan {
  font-size: 0.25rem;
  color: var(--txt_color1);
}

.top_language_btn p {
  font-size: 0.18rem;
  color: var(--i_color);
  margin-left: 0.12rem;
  margin-right: 0.04rem;
}

.top_language_btn .icon-xiala-tianchong {
  font-size: 0.15rem;
  color: var(--i_color);
}

.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: calc(var(--header_height) + 1px);
}

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

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

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

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

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

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

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
  .header_top {
    display: none !important;
  }
  .top_citation {
    display: none;
  }

  .search_cont.on {
    top: var(--header_height);
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
}

/* banner */
.banner {
  width: 100%;
}
.banner_list {
  position: relative;
  overflow: hidden;
}
.banner_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
}
.banner_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}
.banner_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 36.6%;
}
.banner_list li > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.banner-prev,
.banner-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.4rem;
  height: 0.4rem;
  border: 0.01rem solid #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;
}
.banner-prev {
  left: 1%;
}
.banner-next {
  right: 1%;
}
.banner-prev iconify-icon,
.banner-next iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
}
.banner_list .swiper-button-disabled {
  cursor: not-allowed;
}
.banner-prev:hover,
.banner-next:hover {
  background: var(--i_color);
  border: 0.01rem solid var(--i_color);
}

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

.banner-pagination {
  display: block;
  text-align: center;
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.banner-pagination .swiper-pagination-bullet {
  border-radius: 1000px;
  overflow: hidden;
  width: 0.12rem;
  height: 0.12rem;
  display: inline-block;
  margin: 0 0.05rem;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.18rem;
  background: rgba(255, 255, 255, 1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.banner-pagination .swiper-pagination-bullet-active {
  background: url(static/imgs/indicator.webp) no-repeat center;
  background-size: cover;
  width: 0.34rem;
}

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

.banner01_txt01 > img {
  height: 100%;
  display: block;
}

.banner01_txt01 h2 {
  font-weight: bold;
  color: #fff;
  font-size: 0.96rem;
  margin-top: -4.8%;
}

.banner01_txt01 h3 {
  font-size: 0.36rem;
  color: #fff;
}

@media screen and (max-width: 1366px) {
  .banner01_txt01 > img {
    width: 80%;
  }
}
@media screen and (max-width: 1200px) {
  .banner01_txt01 > img {
    width: 70%;
  }
  .banner01_txt01 h2 {
    font-size: 0.82rem;
  }
  .banner01_txt01 h3 {
    font-size: 0.3rem;
  }
  .banner-pagination {
    bottom: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .banner_list .swiper-slide::before {
    padding-bottom: 50%;
  }
  .banner-prev,
  .banner-next {
    display: none;
  }
  .banner01_txt01 > img {
    width: 55%;
  }
  .banner01_txt01 h2 {
    font-size: 0.5rem;
  }
  .banner01_txt01 h3 {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .banner01_txt01 h2 {
    font-size: 0.18rem;
  }
  .banner01_txt01 h3 {
    font-size: 0.13rem;
    margin-bottom: 0.15rem;
  }
  .banner-pagination {
    bottom: 0.1rem;
  }
  .banner-pagination .swiper-pagination-bullet {
    width: 0.08rem;
    height: 0.08rem;
  }
  .banner-pagination .swiper-pagination-bullet-active {
    width: 0.24rem;
  }
}

@media screen and (max-width: 560px) {
  .banner-pagination {
    bottom: 0.04rem;
  }
}

/* 产品类别 */

.ProductCategories {
}

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

.ProductCategories_list li {
  width: 32%;
  overflow: hidden;
}

.ProductCategories_list li a {
  width: 100%;
  display: block;
  position: relative;
  box-sizing: border-box;
}

.ProductCategories_list li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgb(220, 33, 39, 40%) 0%,
    rgba(220, 33, 39, 0) 100%
  );
  z-index: 10;
  transition: all 0.9s ease;
}

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

.pc_itemImg::before {
  content: "";
  display: block;
  padding-bottom: 117%;
}

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

.pc_itemName {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  color: #fff;
  transition: all 0.5s ease;
  z-index: 15;
}

.Masking_board {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: -10%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 15;
}

.mb_box {
  height: 100%;
  position: relative;
}

.mb_box > p {
  color: #fff;
  position: absolute;
  bottom: 16%;
  left: 50%;
  transform: translateX(-50%);
}

.mb_box .btn_box {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.mb_box .btn__ {
  background-color: transparent;
  border-color: #fff;
  padding: 0.14rem 1.5rem;
}

.ProductCategories_list li:hover a::before {
  height: 100%;
}

@media screen and (min-width: 1025px) {
  .ProductCategories_list li:hover .pc_itemName {
    opacity: 0;
  }
}

.ProductCategories_list li:hover .Masking_board {
  bottom: 0;
  opacity: 1;
}

@media screen and (max-width: 1366px) {
  .mb_box .btn__ {
    padding: 0.1rem 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .Masking_board {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .ProductCategories_list li {
    width: 100%;
  }
  .pc_itemImg::before {
    padding-bottom: 100%;
  }
}

/* 合作伙伴 */

.Partners {
}

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

.Partners_list .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 42%;
}
.Partners_list .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  object-fit: contain;
}

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

@media screen and (max-width: 1024px) {
  .Partners-pagination {
    display: block;
  }
}

/* 客户喜欢 */

.CustomersLike {
}

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

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

.CustomersLike_list li {
  width: 23.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.12rem;
  overflow: hidden;
}

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

.cl_itemImg::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

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

.CustomersLike_list li p {
  width: 70%;
  transition: all 0.4s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.CustomersLike_list li:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

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

@media screen and (max-width: 1024px) {
  .CustomersLike .tit_box {
    width: 100%;
  }
  .CustomersLike_list li {
    width: 32%;
  }
  .CustomersLike_list li p {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .CustomersLike_list li {
    width: 49%;
  }
}

/* 全球 */

.worldwide {
  background: url(https://lingjuimg.com/wp-content/uploads/TianJiao/2025/08/worldwideBa.webp)
    no-repeat center;
  background-size: cover;
}

.worldwide .tit_box {
  width: max-content;
}

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

.evaluate {
  width: 49%;
  display: flex;
  gap: 0.2rem 2%;
  flex-wrap: wrap;
}

.evaluate li {
  width: 49%;
  box-sizing: border-box;
  padding: 0.2rem;
  background: linear-gradient(
    0deg,
    rgba(216, 216, 216, 0.4) 0%,
    rgba(216, 216, 216, 0) 100%
  );
}

.ev_NickName {
  display: flex;
  align-items: center;
  gap: 0.2rem 0.1rem;
}

.ev_img {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.ev_img::before {
  content: "";
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--i_color);
}

.ev_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.evaluate li h4 {
  flex-shrink: 0;
  font-family: Arial;
}

.ev_imgBox {
  display: flex;
  gap: 0.05rem 1%;
  flex-wrap: wrap;
  margin-top: 0.12rem;
}

.ev_imgBox img {
  max-width: 32.5%;
  object-fit: contain;
}

.w_introduce {
  width: 47%;
  margin-top: -1.36rem;
}

.w_introduce p {
  font-family: Arial;
}

.w_introduce img {
  width: 100%;
}

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1200px) {
  .evaluate li h4 {
    font-size: 0.16rem;
  }
  .w_introduce p {
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 1024px) {
  .evaluate {
    width: 100%;
  }

  .w_introduce {
    width: 100%;
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  .evaluate li {
    width: 100%;
  }
  .ev_img {
    width: 0.3rem;
    height: 0.3rem;
  }
  .ev_img::before {
    width: 0.35rem;
    height: 0.35rem;
  }
  .ev_NickName > p {
    font-size: 0.14rem;
  }
  .evaluate li h4 {
    font-size: 0.13rem;
  }
  .w_introduce p {
    font-size: 0.13rem;
  }
}

/* 关于我们 */

.AboutUs {
  background: url(https://lingjuimg.com/wp-content/uploads/TianJiao/2025/08/AboutUsBa.webp)
    no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.AboutUs::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.AboutUs .wrap {
  position: relative;
  z-index: 20;
}

.AboutUs .tit_box {
  color: #fff;
  position: relative;
  padding-bottom: 0.25rem;
}

.AboutUs .tit_box::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  left: 0;
  bottom: 0;
}

.AboutUs .tit_box i {
  color: var(--i_color);
  font-weight: bold;
}

.AboutUs .wrap > h4 {
  width: 85%;
  color: #fff;
  font-family: Arial;
}

.AboutUs .wrap > h4 a {
  color: var(--i_color);
  text-decoration: underline;
}

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

.au_icons li {
  width: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  color: #fff;
}

.au_icons h3 {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.au_icons icon {
  font-size: 0.45rem;
  transition: all 0.3s ease;
}

.au_icons p {
  text-align: center;
  transition: all 0.3s ease;
}

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

.au_icons li:hover icon {
  color: var(--i_color);
  transform: scaleX(-1);
}

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

@media screen and (max-width: 1024px) {
  .AboutUs .wrap > h4 {
    width: 100%;
    font-size: 0.16rem;
  }
  .au_icons {
    gap: 0.2rem 0;
  }
  .au_icons li {
    width: 50%;
  }
  .au_icons h3 {
    width: 0.6rem;
    height: 0.6rem;
  }
  .au_icons icon {
    font-size: 0.3rem;
  }
  .au_icons p {
    font-size: 0.15rem;
  }
}
@media screen and (max-width: 560px) {
  .AboutUs .wrap > h4 {
    font-size: 0.13rem;
  }
  .au_icons p {
    font-size: 0.13rem;
  }
}

/* 公司优势 */

.Advantage {
}

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

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

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

.al_img::before {
  content: "";
  display: block;
  padding-bottom: 73%;
}

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

.Advantage_list p {
  color: var(--txt_color2);
  font-family: Arial;
  margin-top: 0.16rem;
  transition: all 0.4s ease;
}

.Advantage_list li:hover img {
  border-radius: 0.2rem;
}

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

@media screen and (max-width: 1024px) {
  .Advantage_list li {
    width: 48%;
  }
}
@media screen and (max-width: 560px) {
  .Advantage_list li {
    width: 100%;
  }
  .Advantage_list p {
    font-size: 0.13rem;
  }
}

/* 原因 */

.reason {
  background: #f8f8f8;
  border-top: 1px solid #bbbbbb;
}

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

.rb_left {
  width: 20.5%;
}

.rb_right {
  width: 71.25%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 2%;
}

.rb_right li {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rb_right h4 {
  width: 100%;
  position: relative;
}

.rb_right h4::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 27.5%;
}

.rb_right h4 img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  object-fit: contain;
}

.rb_right p {
  font-family: Arial;
}

@media screen and (max-width: 1024px) {
  .rb_left {
    width: 100%;
  }
  .rb_right {
    width: 100%;
    margin-top: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .rb_right li {
    width: 100%;
  }
  .rb_right h4::before {
    padding-bottom: 10%;
  }
  .rb_right h3 {
    margin-top: 0.2rem;
  }
  .rb_right p {
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  .rb_right p {
    font-size: 0.13rem;
  }
}

/* 荣誉证书 */

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

.honor_bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.honor .wrap {
  position: relative;
  z-index: 30;
}

.honor_top {
  width: 100%;
  position: absolute;
  top: -10%;
  left: 0;
  z-index: 1;
}

.honor_img {
  width: 100%;
  position: relative;
  z-index: 20;
}

.honor .btn_box {
  position: relative;
  z-index: 50;
}

/* 社区 */

.Community {
}

.Community_imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.5%;
}

.Community_imgs img {
  width: 19.6%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .Community_imgs {
    gap: 0.1rem 1%;
  }
  .Community_imgs img {
    width: 32.66%;
  }
}

@media screen and (max-width: 560px) {
  .Community_imgs {
    gap: 0.05rem 1%;
  }
  .Community_imgs img {
    width: 49.5%;
  }
}

/* 联系信息 */
.contact_information .wrap {
  background: url(https://lingjuimg.com/wp-content/uploads/TianJiao/2025/08/contact_informationBa.webp)
    no-repeat center;
  background-size: cover;
  box-sizing: border-box;
  padding-right: 0.4rem;
}

.contact_information .tit_box h2 {
  color: #3d3d3d;
}

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

.ci_form {
  width: 50.5%;
  font-family: Arial, Helvetica, sans-serif;
}

.ci_box,
.ci_box * {
  font-family: Arial, Helvetica, sans-serif !important;
}

.ci_box ::placeholder {
  font-family: Arial, Helvetica, sans-serif !important;
}

#wpforms-119 {
  --wpforms-field-size-input-height: 50px;
  --wpforms-field-border-size: 0;
  --wpforms-button-background-color: var(--i_color);
  --wpforms-button-border-color: var(--i_color);
  --wpforms-page-break-color: var(--i_color);
  --wpforms-label-error-color: #d63637;
}
#wpforms-119 {
  margin: 0;
  padding: 0;
}
#wpforms-form-119 {
  width: 100%;
  position: relative;
}

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

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

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

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

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

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

#wpforms-119 .wpforms-submit-container {
  width: 260px;
  padding: 0 0;
}
#wpforms-119 .wpforms-submit-container button {
  width: 100%;
  height: 0.44rem;
  font-size: 15px;
  color: #fff;
  background: #333333;
  transition: all 0.4s ease;
}
#wpforms-119 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-119 .wpforms-submit-container button:hover {
  background: var(--i_color);
}

div.wpforms-container-full
  .wpforms-form
  .wpforms-field.wpforms-field-select-style-modern
  .choices
  .choices__inner {
  box-sizing: border-box;
  border: 1px solid #ccc !important;
}

.ci_info {
  width: 37.5%;
}

.ci_info h3 {
  font-family: "Oswald" !important;
}

.ci_list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
  font-family: Arial, Helvetica, sans-serif;
}

.ci_list li img {
  max-width: 0.36rem;
}

@media screen and (max-width: 1024px) {
  .contact_information .wrap {
    padding: 0.2rem;
  }
  .ci_form {
    width: 100%;
  }
  .ci_info {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .contact_information {
    padding-top: 0;
  }
  .ci_box {
    gap: 0.25rem 0;
  }
  .ci_list {
    gap: 0.2rem 0;
  }
  .ci_list li img {
    max-width: 0.27rem;
  }
}

/* footer */

.footer_top {
  background: url(https://lingjuimg.com/wp-content/uploads/TianJiao/2025/08/footer_top.webp)
    no-repeat center;
  background-size: cover;
}

.footer_top .btn__02 {
  padding-left: 3.11rem;
  padding-right: 0.24rem;
  background-color: #fff;
}

.footer_top .btn__02 icon {
  margin-left: 2.76rem;
}

.ft_icons {
  margin-top: 0.24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 5%;
}

.ft_icons a {
  transition: all 0.3s ease;
}

.ft_icons a:hover {
  transform: translateY(-6px);
}

@media screen and (max-width: 1024px) {
  .footer_top .btn__02 {
    padding-left: 0.25rem;
    padding-right: 0.2rem;
  }
  .footer_top .btn__02 icon {
    margin-left: 0.2rem;
  }
}

@media screen and (max-width: 560px) {
  .ft_icons a img {
    max-width: 0.27rem;
  }
}

.footer_info {
  background-color: #333333;
}

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

.fLeft {
  flex-shrink: 0;
  width: 28%;
}
.fLogo img {
  height: 1.15rem;
}
.fLeft > p {
  margin-top: 0.66rem;
  font-size: 0.24rem;
  color: #fff;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
}

.fTit {
  margin-bottom: 0.21rem;
  font-size: 0.3rem;
  color: #fff;
  font-weight: bold;
}

.fNav ul {
  font-family: Arial, Helvetica, sans-serif;
}
.fNav li {
}
.fNav li a {
  display: block;
  padding: 0.1rem 0;
  font-size: 0.18rem;
  color: #fff;
  transition: all 0.3s ease;
}
.fNav li a:hover {
  color: var(--i_color);
}

.f_cr {
  background-color: #303030;
}
.f_cr p,
.f_cr a {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  transition: all 0.4s ease;
  font-family: Arial, Helvetica, sans-serif;
}
.f_cr a:hover {
  color: var(--i_color);
  text-decoration: underline;
}

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

  .fLeft {
    width: 100%;
  }
  .fLogo img {
    height: 70px;
  }
  .fNav {
    display: none;
  }

  .fLeft > p {
    margin-top: 0.4rem;
  }
  .fInfo li {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .f_contact a,
  .f_contact p {
    font-size: 15px;
  }
}
@media screen and (max-width: 560px) {
  .f_contact dl {
    gap: 20px 0;
  }
  .f_contact dt {
    width: 100%;
  }
  .f_contact i {
    width: 20px;
    height: 20px;
    border: none;
  }
  .f_contact iconify-icon {
    font-size: 20px;
  }
  .f_contact h6 {
    font-size: 13px;
  }

  .fLogo img {
    height: 50px;
  }
  .fLeft > p {
    font-size: 14px;
    line-height: 1.5;
  }

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

.fInfo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem 0;
  font-family: Arial, Helvetica, sans-serif;
}

.fInfo h4 {
  display: flex;
  align-items: center;
  color: #c1c1c1;
  margin-bottom: 0.06rem;
}

.fInfo h4 iconify-icon {
  color: #fff;
  font-size: 0.2rem;
  margin-right: 0.08rem;
}

.fInfo p,
.fInfo a {
  color: #fff;
  transition: all 0.4s ease;
}

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

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

/* 新闻内容 */

.news_content {
}

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

.news_top li {
  padding-left: 0.12rem;
  padding-right: 0.12rem;
  padding-bottom: 0.16rem;
  cursor: pointer;
  font-weight: bold;
}

.news_top li a {
  color: #666;
}

.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: #333;
  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;
  }
}

@media screen and (max-width: 768px) {
  .news_top {
    gap: 0 0.4rem;
  }
  .news_top li {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 560px) {
  .news_top {
    gap: 0.15rem 0.3rem;
  }
  .news_top li {
    font-size: 0.15rem;
  }
}

/* 新闻列表 */

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

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

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

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

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

.news_text {
  margin-top: 0.25rem;
  box-sizing: border-box;
  padding: 0 0.2rem;
  border-left: 1px solid #e5e5e5;
}

.news_text h3 {
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s ease;
}

.news_text h4 {
  font-family: Arial;
  margin-top: 0.12rem;
  margin-bottom: 0.24rem;
  color: #222;
}

.news_text p {
  font-family: Arial;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_btn {
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.news_btn icon {
  font-size: 0.1rem;
  margin-left: 0.32rem;
}

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

.news_list li:hover .news_text h3 {
  color: var(--i_color);
}

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

@media screen and (max-width: 1024px) {
  .news_list li {
    width: 48.5%;
  }
}

@media screen and (max-width: 560px) {
  .news_list {
    gap: 0.2rem 0;
  }
  .news_list li {
    width: 100%;
  }
  .news_text {
    border-right: 1px solid #e5e5e5;
  }

  .news_text h3 {
    font-size: 0.16rem;
  }
  .news_text h4 {
    font-size: 0.14rem;
    margin: 0.1rem 0;
  }
  .news_text p {
    font-size: 0.13rem;
    margin-bottom: 0.1rem;
  }

  .news_btn span {
    font-size: 0.14rem;
  }
  .news_btn icon {
    font-size: 0.07rem;
    margin-left: 0.2rem;
  }
}

/* ---------------------------------  Contact Us页面 */

/* form表单 */

.c_form {
}

.c_form_box,
.c_form_box * {
  font-family: Arial, Helvetica, sans-serif !important;
}

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

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

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

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

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

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

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

#wpforms-153 .wpforms-submit-container,
#wpforms-157 .wpforms-submit-container {
  width: 260px;
  padding: 0 0;
}
#wpforms-153 .wpforms-submit-container button,
#wpforms-157 .wpforms-submit-container button {
  width: 100%;
  height: 0.44rem;
  font-size: 15px;
  color: #fff;
  background: #333;
  border-radius: 0;
  transition: all 0.4s ease;
}
#wpforms-153 .wpforms-submit-container img,
#wpforms-157 .wpforms-submit-container img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 4px;
  z-index: 2;
}
#wpforms-153 .wpforms-submit-container button:hover,
#wpforms-157 .wpforms-submit-container button:hover {
  background: var(--i_color);
}

/* 联系我们 */

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

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

.cu_left {
  width: 39.5%;
}

.cu_left img {
  width: 100%;
}

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

.cu_right > p {
  color: #666;
}

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

.cu_info li {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

/* ---------------------------------  About页面 */

/* 关于公司 */
.about_company .wrap {
  position: relative;
}

.about_company .honor_top {
  top: -2%;
}

.about_company .tit_box i {
  font-weight: bold;
  color: #dc2127;
}

.ac_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.3rem;
  position: relative;
  z-index: 20;
}

.ac_box article {
  font-family: Arial;
  width: 46.5%;
}

.ac_video {
  width: 44.25%;
  position: relative;
  background-color: #2f2f2d;
}

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

.ac_video .videoImg {
  width: 118.5%;
  height: 128%;
  object-fit: cover;
  position: absolute;
  right: 0;
  bottom: 0;
}

.ac_video .video_btn {
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 50%;
  background-color: rgb(255, 255, 255, 0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.4s ease;
}

.ac_video .video_btn iconify-icon {
  font-size: 0.25rem;
  color: var(--i_color);
  position: relative;
  transition: all 0.4s ease;
}

.ac_video .video_btn iconify-icon::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: rgb(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.ac_video .video_btn:hover {
  background-color: var(--i_color);
}
.ac_video .video_btn:hover iconify-icon {
  color: #fff;
  transform: rotate(120deg);
}
.ac_video .video_btn:hover iconify-icon::before {
  width: 0;
  height: 0;
}

.about_company .au_icons li {
  color: #333;
}

.about_company .au_icons h3 {
  border: 1px solid #f1a6a9;
}

@media screen and (max-width: 1200px) {
  .ac_box {
    margin-top: 1rem;
  }
  .ac_video .videoImg {
    height: 110%;
  }
}
@media screen and (max-width: 1024px) {
  .about_company .honor_top {
    top: 0;
  }
  .ac_box {
    margin-top: 0.3rem;
  }
  .ac_box article {
    width: 100%;
  }
  .ac_video {
    width: 100%;
    margin-top: 0.4rem;
  }
  .ac_video::before {
    padding-bottom: 60%;
  }
  .ac_video .videoImg {
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 560px) {
  .ac_box article {
    font-size: 0.13rem;
  }
  .ac_video .video_btn {
    width: 0.6rem;
    height: 0.6rem;
  }
  .ac_video .video_btn iconify-icon {
    font-size: 0.2rem;
  }
  .ac_video .video_btn iconify-icon::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}

/* 公司环境 */

.gol_partner_box {
  margin-top: 0.6rem;
}

.gol_partner {
  position: relative;
}
.gol_partner_list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.gol_partner_list .swiper-wrapper {
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}
.gol_partner_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  position: relative;
  flex-direction: column;
  transition: width 0.3s ease;
  overflow: hidden;
  width: 20% !important;
}
.gol_partner_list .img {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  height: 5.3rem;
}
.gol_partner_list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}
.gol_partner_list .swiper-slide-active {
  width: 48% !important;
}

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

/* 左右箭头 */
.gol_partner .pt-button-prev,
.gol_partner .pt-button-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid var(--i_color);
  box-sizing: border-box;
  z-index: 999;
  cursor: pointer;
  outline: none;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.gol_partner .pt-button-prev iconify-icon,
.gol_partner .pt-button-next iconify-icon {
  font-size: 0.2rem;
  color: var(--i_color);
  transition: all 0.3s ease;
}
.gol_partner .pt-button-prev {
  left: -5%;
}
.gol_partner .pt-button-next {
  right: -5%;
}

.gol_partner .pt-button-prev:hover,
.gol_partner .pt-button-next:hover {
  background-color: var(--i_color);
}
.gol_partner .pt-button-prev:hover iconify-icon,
.gol_partner .pt-button-next:hover iconify-icon {
  color: #fff;
}

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

/* 资质证书 */

.Certificate {
  background: url(static/imgs/Certificate.webp) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

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

.Cer_left {
  width: 37%;
  color: #fff;
}

.Cer_left p {
  font-family: Arial;
}

.Cer_btn {
  display: flex;
  gap: 0 0.5rem;
}

.Cer_btn li {
  padding: 0 0.27rem;
  cursor: pointer;
}

.Cer_btn .active {
  background-color: #dc2127;
  transition: all 0.4s;
}

.Cer_right {
  width: 33%;
}

.Cr_a,
.Cr_b {
  visibility: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.Cer_right .active {
  visibility: visible;
  height: auto;
  opacity: 1;
  transform: translateY(0);
}

.Certificate_list {
  position: relative;
  overflow: hidden;
}
.Certificate_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  padding-bottom: 0.5rem;
}
.Certificate_list .swiper-slide {
  flex-shrink: 0;
  position: relative;
}

.Certificate_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.Certificate_list .swiper-slide img {
  width: 70%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

/* -------------------------- */
.Certificate-pagination {
  display: block;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.Certificate-pagination .swiper-pagination-bullet {
  border-radius: 1000px;
  overflow: hidden;
  width: 0.12rem;
  height: 0.12rem;
  display: inline-block;
  margin: 0 0.05rem;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.18rem;
  background: rgba(255, 255, 255, 1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.Certificate-pagination .swiper-pagination-bullet-active {
  background: url(static/imgs/Certificate_active.webp) no-repeat center;
  background-size: cover;
  width: 0.34rem;
}

@media screen and (max-width: 1024px) {
  .Cer_box {
    gap: 0.3rem 0;
  }
  .Cer_left {
    width: 100%;
  }
  .Cer_right {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  .Certificate-prev,
  .Certificate-next {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .Cer_right {
    width: 100%;
  }
  .Certificate-pagination .swiper-pagination-bullet {
    width: 0.08rem;
    height: 0.08rem;
  }
  .Certificate-pagination .swiper-pagination-bullet-active {
    width: 0.22rem;
  }
}

/* ----------------------------------------- OEM &ODM  advantages_oem页面 */

.Advantages_box {
}

.Advantages_box article {
  font-family: Arial, Helvetica, sans-serif;
}

.Advantages_content {
  position: relative;
}

.Advantages_content::before {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  position: absolute;
  top: 20%;
  left: 0;
  background-color: var(--i_color);
  z-index: -1;
}

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

.ac_img {
  width: 47.5%;
}

.ac_img img {
  width: 100%;
}

.ac_text {
  width: 48.75%;
}

.advantages_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 10.16%;
}

.advantages_list li {
  width: 26.56%;
}

.advantages_list img {
  width: 0.54rem;
}

.advantages_list p {
  font-family: Arial, Helvetica, sans-serif;
}

@media screen and (max-width: 1366px) {
  .Advantages_content::before {
    top: 15%;
  }
}
@media screen and (max-width: 1024px) {
  .Advantages_content::before {
    top: 0;
    height: 5px;
  }
  .ac_img {
    width: 100%;
  }
  .ac_text {
    width: 100%;
    order: -1;
    text-align: center;
    margin-bottom: 0.3rem;
  }
  .advantages_list li {
    width: 100%;
  }
  .advantages_list img {
    width: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .advantages_list img {
    width: 0.25rem;
  }
  .advantages_list p {
    margin-top: 0.1rem;
    font-size: 0.13rem;
  }
}

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

.advantages_serve {
}

.serve_list {
}

.serve_list li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.6rem;
}

.serve_list li span {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.serve_list li::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: #d8d8d8;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.severImg,
.severText {
  width: 41.69%;
}

.severImg img {
  width: 100%;
}

.severText p {
  margin-top: 0.24rem;
}

.serve_list li:nth-child(even) {
  flex-direction: row-reverse;
}

.serve_list li:nth-child(even) .severText {
  text-align: right;
}

.serve_list li:hover .severText h2 {
  color: var(--i_color);
}

.serve_list li:hover span {
  background-color: var(--i_color);
}

@media screen and (max-width: 1024px) {
  .serve_list li {
    padding-bottom: 0.2rem;
  }
  .serve_list li span,
  .serve_list li::before {
    display: none;
  }
  .severImg,
  .severText {
    width: 100%;
  }
  .serve_list li:nth-child(even) .severText {
    text-align: left;
  }
}
@media screen and (max-width: 560px) {
  .serve_list li {
    gap: 0.1rem 0;
    padding-bottom: 0.24rem;
  }
  .severText p {
    margin-top: 0.1rem;
  }
}

/* ----------------------------------------- 定制advantages_customize页面 */

.advantages_customize {
}

.customize_box {
  background-color: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.3rem 0;
}

.customize_left {
  width: 37.5%;
}

.customize_left img {
  width: 100%;
}

.customize_right {
  width: 57.125%;
}

.customize_right li {
  padding-bottom: 0.6rem;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.customize_right li::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0.74rem;
  top: 0;
  box-sizing: border-box;
  border-left: 1px dashed #333;
}

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

.customize_right span {
  font-family: Arial, Helvetica, sans-serif;
}

.customize_right .tit_box {
  width: 83.15%;
}

.customize_right .tit_box div {
  margin-top: 0.15rem;
}

.customize_right .tit_box div p {
  /* font-size: 0.18rem; */
}

@media screen and (max-width: 1024px) {
  .customize_box {
    padding: 0.2rem;
    box-sizing: border-box;
  }
  .customize_left,
  .customize_right {
    width: 100%;
  }
  .customize_right li {
    padding-bottom: 0.3rem;
  }
  .customize_right li::before,
  .customize_right li::after {
    display: none;
  }
  .customize_right .tit_box {
    width: 90%;
  }
}
@media screen and (max-width: 320px) {
  .customize_right .tit_box {
    width: 85%;
  }
}

/* --------------------------------------- 科研advantages_research页面 */

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

.research_txt {
  width: 51.25%;
}

.research_txt h4 {
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 0.15rem;
  margin-bottom: 0.3rem;
}

.research_txt p {
  font-family: Arial, Helvetica, sans-serif;
}

.research_img {
  width: 41.25%;
}

.research_img img {
  width: 100%;
}

.research_list li:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
  .research_txt,
  .research_img {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .research_txt h4 {
    margin: 0.1rem 0;
  }
  .research_txt p {
    font-size: 0.13rem;
  }
}

/* 专利证书 */

.Patent_Certificate {
}

.PatentImg {
  padding: 0.41rem 0.68rem;
  background-color: #eeeeee;
}

.PatentImg img {
  width: 100%;
}

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

/* --------------------------------------- 问答advantages_faq页面 */

.catList_show {
  width: 100%;
}

.faq_list {
}
.faq_list > p {
  font-weight: bold;
  color: #999;
}

.faq_list li {
  margin-bottom: 0.24rem;
  background: #fff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
.faq_list .tit {
  box-sizing: border-box;
  padding: 0.2rem 0.2rem;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.3rem;
  align-items: center;
  position: relative;
  cursor: pointer;
  background-color: #eeeeee;
}

.faq_list .tit.active::before {
  background: #eee;
}
.faq_list .tit p {
  font-size: 30px;
}
.faq_list .tit iconify-icon {
  flex-shrink: 0;
  font-size: 0.2rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* .faq_list .tit.active p,
.faq_list .tit.active iconify-icon {
  color: var(--i_color);
} */
.faq_list .tit.active iconify-icon {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faq_list .txt {
  display: none;
  padding: 0.4rem 0.68rem;
  color: #666;
  font-family: Arial, Helvetica, sans-serif;
}

@media screen and (max-width: 1024px) {
  .faq_list .tit {
    padding: 14px 20px;
  }
  .faq_list .tit.active::before {
    background: rgb(0 88 167 / 15%);
  }
  .faq_list .tit p {
    font-size: 17px;
  }
  .faq_list .txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .faq_list .tit p {
    font-size: 16px;
  }
  .faq_list .txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .faq_list li {
    margin-bottom: 12px;
  }
  .faq_list .tit p {
    font-size: 14px;
  }
  .faq_list .tit iconify-icon {
    font-size: 14px;
  }
  .faq_list .txt {
    padding: 10px 20px;
  }
  .faq_list .txt {
    font-size: 13px;
  }
  .faq_list .tit {
    gap: 0 0.15rem;
    padding: 0.1rem;
  }
}

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

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

.cat_nav {
  width: 20%;
  position: relative;
  position: sticky;
  top: 180px;
  align-self: flex-start;
}

.cat_nav_tit {
  margin-bottom: 0.24rem;
  display: none;
}
.cat_nav_tit h4 {
  font-size: 0.32rem;
  font-weight: bold;
}
.cat_nav_tit iconify-icon {
  display: none;
}

.cat_nav_list {
}
.cat_nav_list li {
  margin: 0 0 0.4rem;
}
.cat_nav_list li:last-child {
  margin-bottom: 0;
}

.cat_fold_tit {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
  -webkit-border-radius: 0.1rem;
  border-radius: 0.1rem;
  position: relative;
}
.cat_fold_tit a {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  font-size: 0.2rem;
  font-weight: bold;
}
.cat_fold_tit iconify-icon {
  flex-shrink: 0;
  padding: 0.1rem;
  margin-left: auto;
  font-size: 0.23rem;
  color: #333;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.active .cat_fold_tit {
  /* background: var(--i_color) !important; */
}
.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;
  margin-top: 0.25rem;
  font-family: Arial, Helvetica, sans-serif;
}
.cat_fold_sub dt {
}

.cat_fold_sub a {
  padding: 0.12rem 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.1rem;
}
.cat_fold_sub i {
  flex-shrink: 0;
  width: 0.12rem;
  height: 2px;
  box-sizing: border-box;
  background-color: #333;
}

.cat_fold_sub p {
  font-size: 0.18rem;
  position: relative;
  transition: all 0.4s ease;
}

.cat_fold_sub p::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #333;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease;
}

.cat_fold_sub dt:hover i {
}

.cat_fold_sub dt:hover p::before,
.cat_fold_sub dt.active p::before {
  width: 100%;
}

.cat_fold_sub dt:hover 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;
    position: relative;
    top: 0;
  }
  .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;
    background: #eee;
    -webkit-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
  }
  .cat_nav_list li {
    margin: 0;
  }
  .cat_fold_tit {
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }
  .cat_fold_tit a {
    padding: 12px 0;
    font-size: 17px;
  }
  .cat_fold_sub {
    margin-top: 0;
  }
  .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: 0 20px;
  }
  .cat_fold_sub p {
    font-size: 14px;
  }

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

.cat_post_show {
  width: 76%;
  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%;
  }
}

.cat_info {
}
.cat_info h2 {
  font-weight: bold;
  margin-bottom: 0.07rem;
}
.cat_info span {
  display: block;
  padding-top: 0.2rem;
  color: #666;
  font-family: Arial, Helvetica, sans-serif;
  border-top: 1px solid #e4e4e4;
}

.p_list {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2%;
}
.p_list li {
  width: 23.5%;
  box-sizing: border-box;
  overflow: hidden;
}

.p_list a {
  display: block;
  width: 100%;
}
.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: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.p_list figcaption {
  text-align: center;
  padding: 0.2rem 0.3rem;
}
.p_list figcaption p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all 0.4s ease;
}

.p_list li:hover {
  border-color: var(--i_color);
}
.p_list li:hover img {
  width: 104%;
  height: 104%;
}
.p_list li:hover p {
  color: var(--i_color);
}

@media screen and (max-width: 1200px) {
  .p_list figcaption p {
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .p_list {
    gap: 24px 2%;
  }
  .p_list li {
    width: 49%;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }
  .p_list figcaption {
    padding: 10px 16px 16px;
  }
}
@media screen and (max-width: 560px) {
  .p_list {
    gap: 16px 2%;
  }
  .cat_info span {
    padding-top: 0.07rem;
    font-size: 0.13rem;
  }
  .p_list figcaption p {
    font-size: 14px;
  }
}

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

.Product_Details {
}

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

.p_atlas {
  width: 45%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
.p_atlas::before {
  content: "";
  display: block;
  padding-bottom: 78%;
}

/* thumbnail */
.p_thumbnail {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 15%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.p_thumbnail_list {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
}
.p_thumbnail_list .swiper-wrapper {
  flex-direction: column;
  position: relative;
  width: 100%;
}
.p_thumbnail_list .swiper-slide {
  position: relative;
  box-sizing: border-box;
  border: 1px solid #e4e4e4;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.p_thumbnail_list .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

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

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

.thumbnail-pagination {
  display: none;
}

.p_atlas_list {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 19%);
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #e4e4e4;
  background: #fff;
  overflow: hidden;
}
.p_atlas_list .swiper-wrapper {
  display: -webkit-flex;
  display: flex;
  position: relative;
  height: 100%;
}
.p_atlas_list .swiper-slide {
  height: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.p_atlas_list .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p_atlas_list .swiper-slide iframe,
.p_atlas_list .swiper-slide video {
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: cover;
}

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

@media screen and (max-width: 1024px) {
  .p_atlas {
    width: 100%;
    margin: 0 auto;
    max-width: 5rem;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
  .p_atlas::before {
    display: none;
  }
  .p_thumbnail {
    margin-top: 0.2rem;
    position: relative;
    transform: none;
    width: 100%;
  }
  .p_thumbnail_list {
    position: initial;
    top: initial;
    transform: none;
    height: auto;
  }
  .p_thumbnail_list .swiper-wrapper {
    display: -webkit-flex;
    display: flex;
    flex-direction: initial;
  }
  .p_thumbnail_list .swiper-slide::before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }

  .p_atlas_list {
    order: -1;
    position: relative;
    width: 100%;
  }
  .p_atlas_list .swiper-slide {
    height: 0;
    padding-bottom: 100%;
  }

  .thumbnail-prev,
  .thumbnail-next {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .thumbnail-pagination {
    margin-top: 0;
  }
}

.p_info {
  width: 49%;
}

.p_info h3 {
  color: var(--i_color);
}

.p_info h2 {
  font-size: 0.36rem;
  padding-bottom: 0.19rem;
  border-bottom: 1px solid #e4e4e4;
}

.p_info h4 {
  margin-top: 0.24rem;
  margin-bottom: 0.2rem;
}

.p_info article {
  color: #666;
  font-family: Arial, Helvetica, sans-serif;
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.3rem;
}

.pShares {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.1rem;
  margin-bottom: 0.16rem;
}
.pShares dt {
}
.pShares dd iconify-icon {
  font-size: 0.24rem;
  color: #666;
}
.pShares dd:hover iconify-icon {
  color: var(--i_color);
}

.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: 16px;
  font-family: Arial, Helvetica, sans-serif;
}
.p_tags a:hover {
  color: var(--i_color);
}
@media screen and (max-width: 768px) {
  .p_tags > p {
    font-size: 15px;
  }
  .p_tags a {
    font-size: 13px;
  }
}

@media screen and (max-width: 1200px) {
  .p_info h2 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .p_info {
    width: 100%;
  }
  .p_info h2 {
    font-size: 0.24rem;
    padding-bottom: 0.1rem;
  }
  .p_info h4 {
    margin: 0.2rem 0;
  }
}

@media screen and (max-width: 560px) {
  .p_info h2 {
    font-size: 0.19rem;
  }
  .p_info h4 {
    margin: 0.1rem 0;
  }
  .btns {
    margin-top: 0.2rem;
  }
  .pShares {
    margin: 0.2rem 0;
  }
}

/* 特点优势 */

.Features {
}

.Features_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 0;
}

.Features_list li {
  width: 14.5%;
  padding: 0 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.Features_list li::before {
  content: "";
  display: block;
  width: 1px;
  height: 60%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background: #e4e4e4;
}

.Features_list li:last-child::before {
  display: none;
}

.Features_list li img {
  width: 0.72rem;
  transition: all 0.4s ease;
}

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

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

@media screen and (max-width: 1366px) {
  .Features_list li {
    padding: 0 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .Features_list li {
    width: 50%;
    padding: 0;
  }
  .Features_list li::before {
    display: none;
  }
  .Features_list li img {
    width: 0.5rem;
  }
}
@media screen and (max-width: 560px) {
  .Features_list {
    gap: 0.2rem 2%;
  }
  .Features_list li {
    width: 48%;
  }
  .Features_list li img {
    width: 0.3rem;
  }
  .Features_list li p {
    font-size: 0.13rem;
    margin-top: 0.12rem;
  }
}

/* 详细信息 */

.More_Information {
  border-top: 0.3rem solid #f8f8f8;
}

.Information_content {
  width: 76%;
}

.Information_content h3 {
  background-color: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
}

.Information_content h3 i {
  display: block;
  width: max-content;
  padding: 0.12rem 0.52rem;
  background-color: #fff;
  position: relative;
}

.Information_content h3 i::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--i_color);
  position: absolute;
  left: 0;
  top: 0;
}

.Information_content h3 i::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.Information_content article {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

/* 跳转 */

.p_view_other {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0 4%;
  padding-top: 0.24rem;
  border-top: 1px solid #e4e4e4;
}
.p_view_other li {
  /* max-width: 46%; */
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 0.14rem;
  align-items: center;
}
.p_view_other a {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 0.2rem;
}
.p_view_other span {
  flex-shrink: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #fff;
  position: relative;
}
.p_view_other span iconify-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.26rem;
  color: #333;
}
.p_view_other p {
  font-size: 0.16rem;
}
.p_view_other p b {
  font-size: 0.18rem;
  font-weight: bold;
  text-transform: uppercase;
}

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

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

  .p_view_other p {
    font-size: 14px;
  }
  .p_view_other p b {
    font-size: 17px;
  }
}

/* 相关产品 */

.Related_products {
}

.Related_products .wrap {
  padding-bottom: 0.22rem;
  border-bottom: 2px solid #e4e4e4;
}

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

.Rl_list li p {
  width: 70%;
  transition: all 0.4s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Rl_list li:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

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

/* -------------------------- */
.Rl-prev,
.Rl-next {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 2px;
  border: 1px solid #333;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}

.arrows {
  gap: 0 0.24rem;
}

.Rl-prev .iconfont,
.Rl-next .iconfont {
  font-size: 0.08rem;
  color: #333;
}

.Rl_list .swiper-button-disabled {
  cursor: not-allowed;
}

.Rl-prev:hover,
.Rl-next:hover {
  border-color: var(--i_color);
}

.Rl-prev:hover .iconfont,
.Rl-next:hover .iconfont {
  color: var(--i_color);
}

/* -------------------------- */
.Rl-pagination {
  display: block;
  margin-top: 0.3rem;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.2rem;
  color: #999;
}

.Rl-pagination .swiper-pagination-current {
  font-size: 0.36rem;
  color: var(--i_color);
}

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

@media screen and (max-width: 1024px) {
  .arrows {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .rl_display {
    margin-top: 0.12rem;
  }
  .Rl-pagination {
    font-size: 0.14rem;
  }
  .Rl-pagination .swiper-pagination-current {
    font-size: 0.17rem;
  }
}
