﻿@charset "UTF-8";

@font-face {
  font-family: 'Poppins';
  src: url('font/PoppinsRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('font/PoppinsMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('font/PoppinsBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('font/Oswald-Light.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: Oswald;
  src: url('font/Oswald-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/** 通用样式 */
* {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  box-sizing: border-box;
}

*::after,
*::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  box-sizing: border-box;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

input,
textarea {
  border: none;
  outline: none;
  background-color: transparent;
}

body {
  font-family: 'Poppins';
  background-color: #fff;
  padding: 0;
  margin: 0;
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

video {
  max-width: 100%;
  height: auto;
}

hr {
  border: none !important;
}

* {
  font-size: 18px;
  font-family: 'Poppins';
}

html {
  font-size: 100px;
}

img {
  max-width: 100%;
}

.box {
  max-width: 14.4rem;
  margin: 0 auto;
  width: 100%;
}

.header {
  width: 100%;
  height: 0.8rem;
  /* padding: 0 1.7rem; */
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 90;
  background: #2F2683;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
}

.header.active {
  z-index: 20000;
}

.header>.box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  height: 100%;
}

.header-cont {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;

}

.header ul {
  display: flex;
  gap: 0.7rem;
  flex: 1;
  height: 100%;
}

.header ul li {
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.header ul li>a {
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
  padding: 0.08rem 0;
  transition: .3s;
}

.header ul li>a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #FFF;
  transition: .3s;
  transform: scaleX(0);
}

.header ul li:hover>a {
  /* font-weight: 500; */
}

.header ul li:hover>a::after,
.header ul li.active>a::after {
  transform: scaleX(1);
}

/* .header ul li:nth-child(2)>a::after {
  transform: scaleX(0) !important;
} */

.header ul li:nth-child(2).active>a::after {
  transform: scaleX(1) !important;
}



.searchbut .search-icon {
  cursor: pointer;
  width: .24rem;
  height: .24rem;
  user-select: none;
}

.search-box {
  width: 100%;
  height: 1.2rem;
  position: fixed;
  top: 0.8rem;
  left: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 0.5rem;
  box-shadow: 0 5px 10px rgb(0 0 0 / 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
}

.search-box form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box .inpt {
  width: 6rem;
  padding: 0 0.15rem;
  height: .5rem;
  border-bottom: 1px solid #DADADA;
  color: #333;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.search-box .sub {
  width: .5rem;
  height: .5rem;
  border-bottom: 1px solid #DADADA;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M11.5 21C16.7467 21 21 16.7467 21 11.5C21 6.25329 16.7467 2 11.5 2C6.25329 2 2 6.25329 2 11.5C2 16.7467 6.25329 21 11.5 21Z" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M22 22L20 20" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
  background-size: .24rem;
  cursor: pointer;
}

.searchbut {
  align-items: center;
}

.search-close {
  cursor: pointer;
  transition: .3s;
display: flex;
}

.search-close:hover {
  transform: rotate(180deg);
}

.searchbut.active .search-box {
  /* height: 1.8rem; */
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  opacity: 1;
  visibility: visible;
}

.sub_menu_box {
  height: calc(100% - 0.8rem);
  position: fixed;
  left: 0;
  width: 100%;
  top: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all .1s ease-out;
  z-index: 100;
}

.sub_menu_box.active {
  z-index: 20000;
  opacity: 1;
  visibility: visible;
  transition: all .3s ease-out;
}

.sub_menu_bg {
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}

.sub_menu.active {}

.sub_menu {
  background: #fff;
  padding: 0.5rem 0;
  z-index: 20;
  position: relative;
}

.sub_menu h2 {
  color: #666;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.sub_menu .box {
  display: flex;
  gap: 1rem;
  justify-content: space-between;

}

.sub_menu_tab {
  margin-top: 0.12rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sub_menu_tab .label {
  padding: 0.04rem 0 0.06rem 0;
  position: relative;
  display: block;
  color: #222;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
  text-transform: capitalize;
}

.sub_menu_tab .label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #2F2683;
  width: 0;
  height: 2px;
  transition: .25s;
}

.sub_menu_tab .label.active::after {
  width: 100%;
}

.sub_menu_title {
  flex: 1;
}

.sub_menu_cont {
  width: 11.6rem;
}

.product_more_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-top: 0.2rem;
  transition: all .3s ease;
}

.sub_menu_product.product_more_list {
  display: none;
  opacity: 0;
}

.product_more_list.sub_menu_product.active {
  display: flex;
  opacity: 1;
}

.product_more_list .item {
  /* flex: 1; */
  border: 1px solid #E7E7F0;
  background: #FFF;
  text-align: center;
  position: relative;
  width: calc((100% - 0.8rem) / 5);
}


.product_more_list .item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.18rem;
}

.product_more_list .item a .imgbox {
  width: 100%;
  height: 1.8rem;
  overflow: hidden;
  object-fit: cover;
}
.product_show_more .product_more_list .item{
    width: calc((100% - 1rem) / 6);
}
.product_show_more .product_more_list .item a .imgbox{
  height: 1.85rem;
}

.product_more_list .item a .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: .4s;
}

.product_more_list .item a .txt {
  margin-top: 0.15rem;
}

.product_more_list .item a .txt p {
  color: #222;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.product_more_list .item a .txt span {
  overflow: hidden;
  color: #666;
  text-align: center;
  text-overflow: ellipsis;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.product_more_list .item a:hover .imgbox img {
  transform: scale(1.05);
}

.product_more_list .item::before,
.product_more_list .item::after,
.product_more_list .item a::before,
.product_more_list .item a::after {
  content: "";
  background-color: #2F2683;
  position: absolute;
  display: block;
  transition: all .3s ease-out;
}

.product_more_list .item:hover::before,
.product_more_list .item:hover::after {
  width: 100%;
}

.product_more_list .item:hover a::before,
.product_more_list .item:hover a::after {
  height: 100%;
}

.product_more_list .item::before {
  right: 0;
  top: 0;
}

.product_more_list .item::after {
  left: 0;
  bottom: 0;
}

.product_more_list .item::before,
.product_more_list .item::after {
  width: 0;
  height: 1px;
}

.product_more_list .item a::before,
.product_more_list .item a::after {
  width: 1px;
  height: 0;
}

.product_more_list .item a::before {
  left: 0;
  top: 0;
  width: 1px;
}

.product_more_list .item a::after {
  right: 0;
  bottom: 0;
  width: 1px;
}


.index-product {
  background: #EFEFF4;
  padding: 0.9rem 0;
  padding-bottom: 0.5rem;
}

.index-product-contbox {
  display: none;
  flex-direction: column;
}

.index-product-contbox.active {
  display: flex;
}

.index-product h2 {
  color: #000;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.index-product-tab {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.3rem;
  margin-bottom: 0.4rem;
}

.index-product-tab .label {
  color: #222;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 8px;
  cursor: pointer;
}


.index-product-tab .label::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #2F2683;
  transform: scaleX(0);
  transition: .3s;
}

.index-product-tab .label.active {
  color: #2F2683;
}

.index-product-tab .label:hover::after,
.index-product-tab .label.active::after {
  transform: scaleX(1);
}

.index-product-more {
  display: flex;
  margin: 0.4rem;
}

.index-product-more .more {
  display: none;
}

.index-product-more .more.active {
  display: flex;
}

.index-latest {
  padding: 0.9rem 0;
  padding-top: 0.7rem;
}

.index-latest h2 {
  color: #000;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0.4rem;
}

.index-latest .index-latest-news {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.index-latest-news .item-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.index-latest-news .item-box .item {
  display: flex;
  position: relative;
}

.index-latest-news .item .txt {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.index-latest-news .item-box:nth-child(1) .txt {
  right: 0.7rem;
  bottom: 0.7rem;
  width: 4.37rem;
}

.index-latest-news .item-box:nth-child(2) .item:nth-child(1) .txt {
  right: 0.46rem;
  bottom: 1rem;
  width: 3rem;
}

.index-latest-news .item-box:nth-child(2) .item:nth-child(2) .txt {
  left: 0.6rem;
  bottom: 0.7rem;
  width: 2rem;
}

.index-latest-news .item-box:nth-child(2) .item .txt p {
  font-size: 16px;
}

.index-latest-news .item .txt b {
  color: #FFF;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.index-latest-news .item .txt p {
  color: #FFF;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 0.1rem;
}

.index-latest-news .item .txt .more {
  margin: 0;
  margin-top: 0.3rem;
}

.index-about {
  display: flex;
  flex-wrap: wrap;
  background: #EFEFF4;
  position: relative;
}

.index-about .box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  left: 0;
  right: 0;
  height: 100%;
}

.index-about .txt {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 6.2rem;
}

.index-about .txt .more {
  margin: 0;
  margin-top: 0.4rem;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}

.product-list a {
  background: #fff;
  text-align: center;
  width: calc((100% - 0.72rem) / 4);
  padding: 0.3rem;
  position: relative;
}

.product-list a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: #2F2683;
  transition: .3s ease-out;
}

.product-list a:hover::after {
  height: 100%;
}

.product-list a .imgbox {
  width: 100%;
  height: 2.82rem;
  overflow: hidden;
}

.product-list a .imgbox img {
  width: 100%;
  height: 100%;
  transition: .3s ease-out;
  transform: scale(1);
  object-fit: cover;
}

.product-list a:hover .imgbox img {
  transform: scale(1.05);
}

.product-list a .txt {
  margin-top: 0.16rem;
}

.product-list a .txt p {
  color: #222;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.product-list a .txt span {
  overflow: hidden;
  color: #666;
  text-align: center;
  text-overflow: ellipsis;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 0.04rem;
  display: none;
  /* 142.857% */
}

.more {
  border-radius: 26px;
  border: 1px solid #2F2683;
  padding: 0.11rem 0.47rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.more .label {
  display: flex;
  gap: 0.1rem;
  color: #2F2683;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: .3s;
}

.more::after {
  position: absolute;
  content: "";
  left: -100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #2F2683;
  transition: .3s ease-out;
  z-index: 1;
}

.more .arrow {
  width: 0.16rem;
  height: 0.16rem;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M9.62 3.95337L13.6667 8.00004L9.62 12.0467" stroke="%232F2683" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /><path d="M2.33331 8H13.5533" stroke="%232F2683" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /></svg>') no-repeat center;
  background-size: 100% 100%;
}

.more.w {
  border: 1px solid #fff;
}

.more.w .label {
  color: #fff;
}

.more.w::after {
  background: #fff;
}

.more.w .arrow {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M9.62 3.95337L13.6667 8.00004L9.62 12.0467" stroke="%23fff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /><path d="M2.33331 8H13.5533" stroke="%23fff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /></svg>') no-repeat center;
  background-size: 100% 100%;
}


.more:hover .label {
  color: #fff;
}

.more.w:hover .label {
  color: #2F2683;
}

.more:hover::after {
  left: 0;
}

.more:hover .arrow {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M9.62 3.95337L13.6667 8.00004L9.62 12.0467" stroke="%23fff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /><path d="M2.33331 8H13.5533" stroke="%23fff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /></svg>') no-repeat center;
  background-size: 100% 100%;
}

.more.w:hover .arrow {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M9.62 3.95337L13.6667 8.00004L9.62 12.0467" stroke="%232F2683" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /><path d="M2.33331 8H13.5533" stroke="%232F2683" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /></svg>') no-repeat center;
  background-size: 100% 100%;
}


.banner {
  margin-top: 0.8rem;
}

.banner .swiper-slide {
  position: relative;
  display: flex;
}

.banner .swiper-slide img {
  width: 100%;
  height: auto;
}

.banner .swiper-slide .txt-box {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner .swiper-slide .txt-box h2 {
  color: #FFF;
  font-family: Oswald;
  font-size: 72px;
  font-style: normal;
  font-weight: 300;
  line-height: 80px;
  /* 111.111% */
}

.banner .swiper-slide .txt-box p {
  color: #FFF;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 0.24rem;
}

.banner .swiper-slide .txt-box .txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.more2 {
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 24px;
  border: 1px solid #FFF;
  padding: 0.11rem 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.05rem;
  margin-top: 0.4rem;
  transition: .3s;
}

.more2:hover {
  background: #2F2683;
  border: 1px solid #2f2683;
  color: #FFF;
}

.sjheader,
.sjbanner,
.sjfooter {
  display: none;
}

.index-about {}

.index-about img {
  width: 50%;
}

.index-about .txt {}

.index-about .txt h2 {
  color: #222;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 0.09rem;
  margin-bottom: 0.2rem;
}

.index-about .txt h2::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0.64rem;
  height: 3px;
  background: #2F2683;
}

.index-about .txt p {
  color: #333;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 0.1rem;
}

.pd_top {
  padding-top: 0.8rem;
}

.list-banner {
  position: relative;
  display: flex;
}

.list-banner .sjimg {
  display: none;
}

.list-banner .box {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.list-banner .txt {
  color: #FFF;
  font-family: Oswald;
  font-size: 72px;
  font-style: normal;
  font-weight: 300;
  line-height: 80px;
  /* 111.111% */
}

.hidelocation {
  display: none;
}

.location {
  background: #EFEFF4;
  color: #666;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  text-transform: capitalize;
  padding: 0.2rem 0;

}

.location .box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.04rem;
}

.location a {
  color: #666;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  text-transform: capitalize;
}

.location a:last-child {
  color: #222;
}

.pagebox {
  padding: 0.5rem 0 1rem 0;
  background: #EFEFF4;
}

.pagebox.w {
  background: #fff;
}

.product_menu {
  position: sticky;
  left: 0;
  top: 0;
  min-height: 0.8rem;
  z-index: 10000;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0.15rem 0;
}

.product_menu .box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  gap: 0.3rem;
  row-gap: 0.15rem;
}

.product_menu a {
  color: #222;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
}

.product_menu a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.08rem;
  width: 100%;
  height: 2px;
  background: #2F2683;
  transform: scaleX(0);
  transition: .3s;
}

.product_menu a.active {
  color: #2F2683;
  font-weight: 500;
}

.product_menu a.active::after,
.product_menu a:hover::after {
  transform: scaleX(1);
}


.about-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.about-box img {
  width: 6.8rem;
}

.about-box .about-txt {
  flex: 1;
}

.about-box .about-txt h2 {
  color: #222;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 0.12rem;
  margin-bottom: 0.2rem;
  margin-top: 0.1rem;
}

.about-box .about-txt h2::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0.64rem;
  height: 3px;
  background: #2F2683;
}

.about-box .about-txt p {
  color: #333;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 0.1rem;
}


.about-box {}

.contact-box h2 {
  color: #222;
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.contact-lx {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.contact-lx .item {
  background: #EFEFF4;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.4rem 0.3rem;
}

.contact-lx .item img {
  width: 0.72rem;
  height: 0.72rem;
}

.contact-lx .item h3 {
  color: #231815;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: 0.2rem;
  /* 24px */
}

.contact-lx .item p {
  color: #231815;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: 0.04rem;
  /* 27px */
}

.contact-lx .item p a {
  text-decoration: underline;
}

.contact-form {
  margin-top: 0.8rem;
}

.contact-form .tips {}

.contact-form .tips h3 {
  color: #2F2683;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.contact-form .tips p {
  color: #231815;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 0.04rem;
}

.contact-form .btn {}

.contact-form .btn {
  border-radius: 26px;
  border: 1px solid #2F2683;
  padding: 0.11rem 0.47rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  cursor: pointer;
}

.contact-form .btn .label {
  display: flex;
  gap: 0.1rem;
  color: #2F2683;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: .3s;
}

.contact-form .btn::after {
  position: absolute;
  content: "";
  left: -100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #2F2683;
  transition: .3s ease-out;
  z-index: 1;
}

.contact-form .btn .arrow {
  width: 0.16rem;
  height: 0.16rem;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M9.62 3.95337L13.6667 8.00004L9.62 12.0467" stroke="%232F2683" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /><path d="M2.33331 8H13.5533" stroke="%232F2683" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /></svg>') no-repeat center;
  background-size: 100% 100%;
  position: relative;
  z-index: 2;
}

.contact-form .btn:hover .arrow {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M9.62 3.95337L13.6667 8.00004L9.62 12.0467" stroke="%23fff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /><path d="M2.33331 8H13.5533" stroke="%23fff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" /></svg>') no-repeat center;
  background-size: 100% 100%;
}

.contact-form .btn:hover .label {
  color: #fff;
}

.contact-form .btn:hover::after {
  left: 0;
}

.contact-box form {
  background: #EFEFF4;
  padding: 0.4rem;
  gap: 0.26rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}

.contact-box form input {
  width: calc((100% - 0.52rem) / 3);
}

.contact-box form textarea {
  width: 100%;
  height: 1.28rem;
}

.contact-box form input,
.contact-box form textarea {
  background: #FFF;
  padding: 0.12rem 0.16rem;
  color: #AAA;
  text-align: left;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.product_show {}

.product_show_box {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-swiper {}

.product-swiper .swiper-slide {
  display: flex;
  align-items: center;
}

.product-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-txt {
  width: 100%;
  flex: 1;
}

.product-txt h2 {
  color: #222;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px solid #2F2683;
  padding-bottom: 0.15rem;
  margin-bottom: 0.15rem;
}

.product-txt p {
  color: #333;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 177.778% */
}

.product_show .swiper1 {
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  border: 1px solid #E7E7F0;
}

.product_show .swiper2 {
  width: 6rem;
  height: 1rem;
  overflow: hidden;
  margin-top: 0.2rem;
}

.product_show .swiper2 .swiper-wrapper {
  /* justify-content: center; */
  gap: 0.18rem;
}

.product_show .swiper2 .swiper-slide {
  width: 1rem;
  height: 1rem;
  border: 1px solid #eee;
  cursor: pointer;
  display: none;
}

.product_show .swiper2 .swiper-slide.has-valid-content {
  display: flex;
}

.product_show .swiper2 .swiper-slide.active {
  border: 1px solid #2F2683;
}

.product_show .swiper2 img {
  width: 100%;
}

.product_show_more {
  margin-top: 0.7rem;
}

.product_show_more h2 {
  color: #333;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px solid #2F2683;
  padding-bottom: 0.16rem;
  margin-bottom: 0.3rem;
}


.footer {
  background: #2F2683;
  color: #ddd;
  padding: 0.6rem 0 0.4rem 0;
  gap: 0.26rem;
}

.footer .copy-right {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 0.3rem;
  margin-top: 0.4rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
}

.footer-left img {
  margin-bottom: 0.2rem;
}

.footer-left p {
  color: #DDD;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 187.5% */
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-right ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.footer-right ul li a {
  color: #DDD;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  text-transform: capitalize;
  transition: .3s;
}

.footer-right ul li a:hover {
  color: #fff;
}

.footer-right .link {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.3rem;
}

.footer .copy-right p {
  color: #FFF;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
}


/* 分页容器基础样式 */
.”NewsPage” {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  /* 元素之间的间距 */
  font-size: 16px;
  color: #666666;
  /* 基础文字色 */
  line-height: 1;
  padding: 8px 16px;
  border-radius: 4px;
  /* background: #f8f9fa; */
  display: flex;
  justify-content: center;
  margin-top: 0.3rem;
}

/* 分页链接样式 */
.”NewsPage” a {
  display: inline-block;
  padding: 6px 12px;
  color: #2F2683;
  /* 主题色-文字 */
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  background: #fff;
}

/* 链接hover/聚焦效果 */
.”NewsPage” a:hover,
.”NewsPage” a:focus {
  background: #2F2683;
  color: #ffffff;
  /* 反白文字 */
  outline: none;
}

/* 可选：当前页样式（如果后续加了current类可启用） */
.”NewsPage” .current {
  padding: 6px 12px;
  background: #2F2683;
  color: #ffffff;
  border-radius: 4px;
}

/* 适配小屏幕：自动换行 */
@media (max-width: 480px) {
  .”NewsPage” {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
  }
}