/* 首页 */
/* 头部导航 */
header {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.pc-header {
  position: sticky;
  top: -140px;
  left: 0;
  right: 0;
  z-index: 99;
}
.head-top {
  background-color: #f4f9fd;
}
.head-top .tool-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
.lang-box {
  width: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lang-box img {
  width: 20px;
  height: 20px;
}
.lang-box a {
  color: #333;
  font-weight: 700;
  font-size: 18px;
}
.lang-box a:hover {
  color: var(--theme-color);
}
.lang-box .divider {
  width: 1px;
  height: 16px;
  background-color: #bbb;
}
.lang-box2 {
  color: #333;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.lang-box2 i {
  margin-left: 10px;
}
.lang-box2 ul {
  position: relative;
  padding: 10px 0;
  z-index: 999;
  width: 150%;
  background: white;
  box-shadow: 0 0 10px #ccc;
  color: #333;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  display: none;
}
.lang-box2:hover ul {
  display: block;
}
.lang-box2 ul li a {
  display: flex;
  justify-content: center;
  height: 32px;
  line-height: 32px;
  align-items: center;
}
.lang-box2 ul li a:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.head-btm {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.head-btm .head-btm-top {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
}
.head-btm .logo-right .hot-line {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #333;
  font-weight: 700;
  font-size: 18px;
}
.head-btm .logo-right .hot-line span:first-child {
  font-size: 34px;
}
.head-btm form {
  margin-right: 50px;
  width: 400px;
  height: 40px;
  border-radius: 23px;
  padding: 2px;
  background: linear-gradient(90deg, var(--theme-color), var(--theme-background));
  position: relative;
}
.head-btm form div {
  margin-right: 40px;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 23px;
}
.head-btm input {
  width: 80%;
  font-size: 18px;
  border-radius: 23px;
  padding-left: 20px;
  height: 100%;
}
.head-btm button {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 23px;
  border: none;
  background: linear-gradient(90deg, var(--theme-color), var(--theme-background));
  color: #fff;
}
.head-btm button:hover {
  opacity: 1;
}
.head-btm .head-btm-nav {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.right-nav .nav-list .nav-item {
  cursor: pointer;
  position: relative;
  width: 120px;
  height: 50px;
  font-size: 18px;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}
.right-nav .nav-list .nav-item.active {
  background: linear-gradient(90deg, var(--theme-color), var(--theme-background));
  color: #fff;
}
.right-nav .nav-list .nav-item::after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}
.right-nav .nav-list .nav-item .sub-nav {
  min-width: 180px;
  width: auto;
  height: auto;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 40px);
  left: 50%;
  z-index: 99;
  box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.05);
  transform: translateX(-50%);
  transition: all 0.36s;
}
.right-nav .nav-list .nav-item .sub-nav > a {
  font-size: 16px;
  color: #262626;
  font-weight: 400;
  transition: all 0.3s;
  display: block;
  padding: 20px;
  text-align: center;
  white-space: nowrap;
}
.right-nav .nav-list .nav-item:hover {
  color: var(--theme-color);
  overflow: visible;
}
.right-nav .nav-list .nav-item:hover .sub-nav {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}
.right-nav .nav-list .nav-item .sub-nav > a:hover {
  color: #fff;
  background-color: var(--theme-color);
}
.nav-right {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav-right img {
  width: 31px;
  height: 31px;
}
.nav-right span {
  font-size: 16px;
  color: #333;
  margin-left: 10px;
}
.mb-header .top-mes {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  padding: 0 20px;
  box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.mb-header::after {
  content: "";
  display: block;
  height: 70px;
}
.mb-header .top-mes .logo img {
  width: 200px;
}
.mb-header .top-mes .cool-menu {
  display: flex;
  margin-left: 10px;
  align-items: center;
  height: 70px;
}
.mb-header .top-mes .cool-menu .line-wrap {
  cursor: pointer;
  position: relative;
  z-index: 100;
}
.mb-header .top-mes .cool-menu .line-wrap div[class^="line"] {
  transition: all 0.3s ease;
  width: 28px;
  border-radius: 1px;
  border-top: 2px solid #000;
  margin-bottom: 8px;
}
.mb-header .top-mes .cool-menu .line-wrap div.line3 {
  margin-bottom: 0;
}
.mb-header .top-mes .menu-box {
  position: fixed;
  top: 70px;
  width: 100%;
  bottom: 0;
  left: 100%;
  z-index: 10;
  background-color: #f8f8f8;
  overflow: hidden;
  transition: left 0.3s;
}
.mb-header .top-mes .menu-box.active {
  left: 0;
}
.mb-header .top-mes .menu-box .menu-list {
  padding: 20px 20px 0;
}
.mb-header .top-mes .menu-box .menu-list li {
  position: relative;
}
.mb-header .top-mes .menu-box .menu-list li .sub-nav {
  display: none;
  padding: 0 15px;
}
.mb-header .top-mes .menu-box .menu-list li .sub-nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #d4d4d4;
}
.mb-header .top-mes .menu-box .menu-list li .sub-nav a:hover {
  color: var(--theme-color);
}
.mb-header .top-mes .menu-box .menu-list .menu-item {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #d4d4d4;
  font-size: 14px;
  color: #333;
  font-weight: 700;
}
.mb-header .top-mes .menu-box .menu-list .menu-item:hover {
  color: var(--theme-color);
}

/* 轮播图 */
.home-swiper {
  position: relative;
}
/* 自定义swiper导航和分页器样式 */
.home-swiper-line {
  position: absolute;
  z-index: 2;
  bottom: 50px;
}
.home-swiper-line .swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 12%;
  bottom: unset;
  width: unset;
  transform: translateY(-50%);
}
.home-swiper-line
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 15px;
  background-color: #fff;
  opacity: 1;
  position: relative;
}
.home-swiper-line .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.home-swiper-line .swiper-pagination-two {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  position: absolute;
  right: 17%;
  transform: translateY(-50%);
}
.home-swiper-line .swiper-button-prev {
  --swiper-navigation-size: 24px;
  left: unset;
  right: 14%;
  color: #fff;
}
.home-swiper-line .swiper-button-next {
  --swiper-navigation-size: 24px;
  right: 12%;
  color: #fff;
}

.main {
  width: 100%;
  background-size: 100% 100%;
}
.bg-cover {
  position: relative;
}
.bg-cover::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.bg-cover .container {
  position: relative;
  z-index: 2;
}
/* 关于我们 */
.about-us {
  padding: 100px 0;
}
.about-us-theme {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about-us-left {
  width: 45%;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-us-left-cen h4 {
  color: #232323;
  font-weight: 700;
  font-size: 30px;
  line-height: 48px;
  margin: 40px 0 10px;
}
.about-us-left-cen p {
  color: #333;
  font-weight: 400;
  font-size: 18px;
  line-height: 2;
}

.all-title {
  position: relative;
  font-size: 48px;
  line-height: 72px;
  font-weight: 700;
  color: #232323;
}
.all-title span {
  position: relative;
  z-index: 2;
}
.all-title::after {
  content: url(../images/icon/abus.png);
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 1;
}
.about-us-left-btm {
  display: flex;
  align-items: center;
  margin: 30px 0;
  justify-content: space-between;
}
/* .about-us-left-btm-item {
  margin-right: 80px;
} */
.about-us-left-btm-item-top {
  color: var(--theme-color);
  text-align: center;
}
.about-us-left-btm-item-top .num {
  font-weight: 700;
  font-size: 48px;
}
.about-us-left-btm-item-top .date {
  font-weight: 700;
  font-size: 18px;
}
.about-us-left-btm-item-btm {
  text-align: center;
}
.about-us-left-btm-item-btm .desc {
  font-weight: 700;
  font-size: 20px;
  color: #232323;
}
.about-us-left-more {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
}
.about-us-left-more span {
  font-style: italic;
  color: #232323;
}
.about-us-left-more i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e9f8f6;
  color: var(--theme-background);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  transition: all 0.3s;
  transform: rotateZ(180deg);
}
.about-us-left-more:hover i {
  color: var(--theme-color);
  margin-left: 32px;
}
.about-us-right {
  width: 50%;
}
/* 产品 */
.product {
  background: #fff;
  padding: 100px 0;
}
.product-top {
  height: 46px;
  background-color: #f7f7f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-top .pro-title {
  height: 100%;
  padding: 0 20px;
  background: linear-gradient(90deg, var(--theme-color), var(--theme-background));
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
}
.product-top .more {
  color: var(--theme-background);
  font-style: italic;
  font-size: 20px;
  display: flex;
  align-items: center;
  padding-right: 20px;
  font-weight: 700;
}
.product-top .more i {
  margin-left: 10px;
  transform: rotateZ(180deg);
}
.product-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.product-item {
  width: 24%;
  margin-right: calc(4% / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.product-item:nth-child(4n) {
  margin-right: 0;
}
.product-item div {
  width: 100%;
  height: 370px;
  overflow: hidden;
  display: flex;
  background-color: #e9ecf0;
  justify-content: center;
  align-items: center;
}
.product-item div img {
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.product-item:hover {
  box-shadow: 2px 5px 10px #ccc;
}
.product-item:hover div img {
  transform: scale(1.2);
}
.product-item p {
  width: 100%;
  padding: 5px 0;
  color: #232323;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 36px;
}
/* 优势 */
.advantage {
  padding: 100px 0;
}
.case-top-eng {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.english {
  font-weight: 700;
  font-size: 20px;
  color: var(--theme-color);
}
.ch-title {
  font-weight: 700;
  margin-top: 10px;
  font-size: 48px;
  color: #232323;
}
.step {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.step-item {
  width: 25%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-item div {
  position: relative;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--theme-color), var(--theme-background));
}
.step-item div span {
  position: relative;
  background-color: #f1f3f8;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #232323;
  font-size: 48px;
  font-weight: 1000;
  bottom: 7px;
}
.step-item div img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 220%;
}
.step-item:last-child div img {
  display: none;
}
.step-item h2 {
  color: #232323;
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}
.step-item p {
  text-align: center;
  line-height: 1.5;
  color: #666;
  font-size: 18px;
}

/* 新闻 */
.dynamic {
  padding: 100px 0;
  background-color: #f9fbff;
}
.dynamic-list {
  display: flex;
  margin-top: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dynamic-list-item {
  width: 48%;
  display: flex;
  transition: all 0.5s;
  margin-bottom: 30px;
  position: relative;
}
.dynamic-list-item::after {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(
    center,
    ellipse,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  transition: all 0.3s;
}
.dynamic-img {
  width: 200px;
  height: 104px;
  flex-shrink: 0;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 10px;
}
.dynamic-content {
  width: calc(100% - 200px);
}
.dynamic-img img {
  transition: all 0.8s;
}
.dynamic-list-item-title {
  color: var(--theme-color);
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s;
}
.dynamic-list-item-text {
  color: #565656;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}
.dynamic-list-item-btm {
  transition: all 0.3s;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-top: 10px;
}
.dynamic-list-item-btm-time {
  font-weight: 400;
  font-size: 16px;
  margin-right: 10px;
  transition: all 0.3s;
  color: var(--theme-color);
}
.dynamic-list-item:hover {
  transform: translateY(-5px);
}
.dynamic-list-item:hover::after {
  opacity: 1;
  transform: translateY(5px);
}
.dynamic-list-item:hover .dynamic-img img {
  transform: scale(1.2);
}
/* 合作伙伴 */
.partner {
  padding: 50px 0;
}
.partner-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.partner-item {
  width: calc(100% / 6);
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(100%);
  transition: all 0.3s;
  aspect-ratio: 16/9;
}
.partner-item:hover {
  filter: grayscale(0%);
  box-shadow: 0 0 10px #a8a8a8;
}
/* 底部 */
footer {
  background-color: #373d41;
}
.footer-top,
.footer-top-phone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-top {
  padding: 30px 0;
  border-bottom: 1px solid #494e52;
}
.footer-top ul {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
}
.footer-top ul a {
  margin-left: 20px;
}
.pc-footer .link-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px 0;
}
.footer-right-btm {
  display: flex;
  align-self: flex-start;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.footer-right-btm .btm-1 {
  margin-right: 10px;
  width: 48px;
  height: 48px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.btm-boss {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 5px;
  bottom: 130%;
  right: -50%;
}
.btm-boss .bos-img {
  width: 80px;
  height: 80px;
}
.tel-boss {
  display: none;
  position: absolute;
  background-color: #fff;
  height: 40px;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 5px;
  bottom: 130%;
  right: -50%;
}
.tel-boss .bos-num {
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  white-space: nowrap;
  color: #333333;
}
.btm-1:hover .btm-boss,
.btm-1:hover .tel-boss {
  display: block;
}
.link-wrapper .info-item {
  color: #fff;
  /* align-items: center; */
  font-size: 18px;
  margin-top: 30px;
}
.link-wrapper .info-item span:first-child {
  flex-shrink: 0;
}
.link-wrapper .info-item:first-child {
  margin-top: 0;
}
.link-wrapper .info-item img {
  margin-right: 18px;
}
.pc-footer .link-wrapper .qrcode-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.qrcode-wrapper-lt {
  display: flex;
  flex-direction: column;
}
.qrcode-wrapper-lt .line-ly {
  display: flex;
  align-self: flex-end;
  justify-content: center;
  align-items: center;
  width: 122px;
  height: 49px;
  border-radius: 4px;
  background: var(--theme-color);
  color: #fff;
  margin-bottom: 10px;
}
.footer-top-phone img {
  margin-right: 25px;
}
.footer-top-phone .p1 {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: right;
}
.footer-top-phone .p2 {
  color: #fff;
  font-weight: 700;
  font-size: 36px;
}
.pc-footer .link-wrapper .qrcode-wrapper > img {
  width: 130px;
  height: 130px;
  margin-left: 30px;
}
footer .footer-bottom {
  padding-top: 20px;
  background-color: #32373b;
}
footer .footer-bottom .copyright {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}
footer .footer-bottom .copyright > div {
  padding-bottom: 20px;
  word-break: break-all;
}
footer .footer-bottom .copyright > div span {
  margin-right: 10px;
}
footer .footer-bottom .copyright .other-mes .divider {
  width: 1px;
  height: 12px;
  margin: 0 14px;
  flex-shrink: 0;
  background-color: #fff;
}
.tool-list-r {
  position: fixed;
  right: 30px;
  bottom: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.tool-list-r .tool-item {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2fb8a7;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(47, 184, 167, 0.3);
  cursor: pointer;
  position: relative;
}
.tool-item .tel-boss-2 .bos-num-2 {
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  white-space: nowrap;
  color: #333333;
}
.tool-item .tel-boss-2,
.tool-item .btm-boss-2 {
  display: none;
  position: absolute;
  background-color: #fff;
  height: 40px;
  box-sizing: border-box;
  padding: 10px;
  box-shadow: 0 0 10px #ccc;
  border-radius: 5px;
  right: 140%;
}
.tool-item .btm-boss-2 {
  width: 100px;
  height: 100px;
}
.tool-item .btm-boss-2 .bos-img-2 {
  width: 80px;
  height: 80px;
}
.tool-item:hover .btm-boss-2,
.tool-item:hover .tel-boss-2 {
  display: block;
}
#go-top {
  transform: rotateZ(90deg);
}
#go-top i {
  transition: all 0.3s;
}
#go-top:hover i {
  margin-right: 10px;
}
/* 2023年7月27日18:37:54*/

/* 内页banner信息 */
.bread {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.bread li {
  margin-right: 20px;
}
.bread li a {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
}
.bread li:nth-child(1) a::before {
  content: url(../images/icon/home.png);
  margin-right: 10px;
  margin-top: 5px;
}
.bread li:not(:first-child) a::before {
  font-family: layui-icon !important;
  content: "\e602";
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
}
.banner-info {
  padding: 50px 0;
  height: 400px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.banner-info h1 {
  font-weight: 700;
  font-size: 70px;
  color: #fff;
}
.banner-info h2 {
  font-weight: 700;
  margin-top: 15px;
  font-size: 32px;
  color: #fff;
}
/* 内页菜单 */
.nav-wrapper {
  background-color: #f3f3f3;
}
.tab-list {
  position: relative;
  overflow-x: auto;
}
.tab-list1 {
  display: none;
}
.tab-list .tab-item {
  position: relative;
  margin-right: 50px;
  line-height: 80px;
  font-size: 18px;
  color: #232323;
  font-weight: 700;
  flex-shrink: 0;
}
.tab-list .tab-item:hover,
.tab-list .tab-item.active {
  color: var(--theme-color);
}
.tab-list .tab-item:hover::after,
.tab-list .tab-item.active::after {
  width: 100%;
}
.tab-list .tab-item::after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  width: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: var(--theme-color);
}
.tab-list .tab-item:last-child {
  margin-right: 0;
}
.business-main {
  padding: 100px 0;
}
.team-content {
  background-color: #f9fbff;
  padding: 100px 0;
}
.team-content .team-content-list {
  display: flex;
  margin-top: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.team-content .team-content-list::after {
  content: "";
  width: 32%;
}
.team-content .team-content-item {
  width: 32%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.team-content .team-content-item .team-content-item-img {
  overflow: hidden;
  width: 100%;
  text-align: center;
}
.team-content .team-content-item .team-content-item-img img {
  transition: all 0.5s;
}
.team-content .team-content-item:hover .team-content-item-img img {
  transform: scale(1.2);
}
.team-content .team-content-item .team-content-item-title {
  font-weight: 700;
  font-size: 24px;
  color: #000;
  margin-top: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* 荣誉资质 */
.promotional {
  padding: 100px 0;
}
.promotional-list {
  display: flex;
  flex-wrap: wrap;
}
.promotional-item {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.promotional-book {
  margin-top: 20px;
  font-weight: 700;
  font-size: 20px;
  color: #232323;
}

/* 分页器 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.pagination ul {
  display: flex;
  flex-wrap: wrap;
}
.pagination ul li {
  width: 50px;
  height: 50px;
  background: #fff;
  display: flex;
  border: 1px solid var(--theme-color);
  border-radius: 50%;
  margin-right: 10px;
}
.pagination ul li.active {
  background: var(--theme-color);
}
.pagination ul li a {
  width: 100%;
  height: 100%;
  color: var(--theme-color);
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  transition: all 0.3s;
}
.pagination ul li.active a {
  color: #fff;
}
.pagination ul li:hover:not(.disabled) {
  background: var(--theme-color);
}
.pagination ul li:hover:not(.disabled) a {
  color: #fff;
}
.pagination li.disabled a {
  cursor: not-allowed;
  opacity: 0.3;
}
/* 产品列表 */
.pro-produce .pro-name {
  font-weight: 700;
  font-size: 48px;
  color: #232323;
  margin-bottom: 20px;
}
.pro-produce .pro-desc {
  color: #565656;
  font-size: 18px;
  line-height: 30px;
}
/* 产品详情 */
.product-detail {
  padding: 100px 0;
}
.product-detail-main-top {
  display: flex;
  height: 710px;
  justify-content: space-between;
  /* align-items: center; */
}
.product-detail-img {
  width: 710px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #eaedf0;
}
.product-detail-produce {
  display: flex;
  padding: 50px 0 50px 70px;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.product-detail-produce h3 {
  font-weight: 700;
  font-size: 40px;
  color: #232323;
  margin-bottom: 10px;
}
.product-detail-produce h4 {
  font-size: 24px;
  color: #565656;
  padding: 10px 0;
}
.product-detail-produce div img {
  width: 100%;
}

.product-detail-produce a {
  width: 190px;
  flex-shrink: 0;
  height: 60px;
  font-size: 24px;
  border-radius: 30px;
  background: var(--theme-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.product-detail-produce a::after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 100px;
  background-color: #fff;
  left: -40px;
  opacity: 0.5;
  transform: rotate(-30deg);
  transition: all 800ms cubic-bezier(0.3, 1, 0.2, 1);
}
.product-detail-produce a span {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  margin-left: 10px;
}
.product-detail-produce a:hover:after {
  left: 120%;
}

.product-detail-content {
  padding: 30px 0;
}
.product-detail-content h5 {
  color: #232323;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
}
.product-detail-content h5:not(:first-child) {
  margin-top: 30px;
}
.product-detail-nav-item p {
  color: #232323;
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
}
.product-detail-nav {
  display: flex;
}
.product-detail-nav p {
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  font-weight: 700;
  font-size: 24px;
  color: #232323;
  transition: all 0.3s;
}
.product-detail-nav p.active {
  background: linear-gradient(-90deg, #52c0e6, #7be4db);
  color: #fff;
}
.result_list {
  margin-top: 40px;
}
.result_list li {
  font-size: 20px;
  line-height: 2;
}
.pagination-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-top: 50px;
  border-bottom: 1px solid #efefef;
}
.pagination-detail a {
  font-weight: 400;
  font-size: 18px;
  color: #232323;
}
.pagination-detail a.disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.pagination-detail a:not(.disabled):hover {
  color: var(--theme-color);
}
.recommended {
  font-weight: 700;
  font-size: 36px;
  color: #232323;
  padding: 20px 0;
}
.swiper-product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#swiper_4 {
  height: 500px;
}
.swiper_4-swiper-pagination {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
#swiper_4 .swiper_4-swiper-pagination .swiper-pagination-bullet {
  background-color: var(--theme-color);
  opacity: 1;
  margin: 0 10px;
}
.swiper_4-swiper-pagination .swiper-pagination-bullet-active {
  outline: 2px solid var(--theme-color);
  outline-offset: 4px;
}
.swiper-product-img {
  width: 100%;
  height: 370px;
  background: #e9ecf0;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.swiper-product-item p {
  font-weight: 700;
  padding: 20px 0;
  font-size: 24px;
  color: #232323;
  width: 100%;
}
/* 新闻列表 */
.news-main {
  padding: 100px 0;
}
.news-main-left {
  width: 50%;
  /* height: 500px; */
}
.news-main-right {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-time {
  font-weight: 400;
  font-size: 18px;
  color: #232323;
  color: var(--theme-color);
}
.news-title {
  color: #232323;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  margin: 10px 0 20px;
}
.news-desc {
  color: #565656;
  font-size: 18px;
  line-height: 30px;
}
.news-more {
  width: 161px;
  height: 50px;
  border-radius: 25px;
  background: linear-gradient(-90deg, #52c0e6, #7be4db);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  margin-top: 57px;
}
.news-main-list {
  display: flex;
  flex-direction: column;
  margin: 70px 0;
}
.news-main-list .news-main-left {
  width: 369px;
  height: 226px;
  flex-shrink: 0;
  border-radius: 10px;
}
.news-main-item {
  padding-bottom: 37px;
  border-bottom: 1px solid #efefef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.news-main-item .news-main-right {
  flex: 1;
  justify-content: space-between;
  padding-left: 40px;
}
.news-main-item .news-title {
  margin: 10px 0 25px;
}
.news-main-item .about-us-left-more {
  margin-top: 36px;
}

/* 新闻详情 */
.news-detail {
  padding: 100px 0;
  background-color: #fafafa;
}
.news-detail-left {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 0 13px 0 #00000012;
  padding: 50px;
}
.news-detail-left .news-detail-left-top {
  padding-bottom: 24px;
  border-bottom: 1px solid #efefef;
}
.news-detail-left .news-detail-left-top p {
  font-weight: 700;
  font-size: 24px;
  color: var(--theme-color);
  margin-bottom: 30px;
}
.news-detail-left .news-detail-left-top h2 {
  font-weight: 700;
  font-size: 30px;
  color: #232323;
}
.news-detail-left .news-detail-left-cen {
  flex: 1;
  padding: 20px 0;
}
.news-detail-left .news-detail-left-cen p {
  color: #565656;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
}

.news-detail-right {
  width: 300px;
  background-color: #fff;
  padding: 30px 20px;
}
.news-detail-right .news-detail-right-top-title {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  position: relative;
}
.news-detail-right .news-detail-right-top-title ::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(-90deg, #52c0e6, #7be4db);
  left: 0;
  bottom: 0;
}
.news-detail-right .news-detail-right-top-title span {
  font-weight: 700;
  font-size: 26px;
  text-align: left;
  color: #333333;
}
.news-detail-right .news-detail-right-btm .news-detail-right-btm-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.news-detail-right .news-detail-right-btm .news-detail-right-btm-list > img {
  width: 100px;
  height: 75px;
  border-radius: 5px;
  object-fit: contain;
}
.news-detail-right .news-detail-right-btm .news-detail-right-btm-list .item {
  width: 240px;
  margin-left: 10px;
}
.news-detail-right .news-detail-right-btm .news-detail-right-btm-list .item .item-title {
  color: #232323;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}
.news-detail-right .news-detail-right-btm .news-detail-right-btm-list .item .item-date {
  font-weight: 400;
  font-size: 16px;
  color: var(--theme-color);
}
/* 联系我们 */
.contact {
  padding: 100px 0;
}
.contact-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.contact-title {
  font-weight: 700;
  font-size: 48px;
  color: var(--theme-color);
}
.contact-desc {
  color: #565656;
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  margin: 20px 0 30px;
}
.contact-list {
  display: flex;
  margin-top: 50px;
  flex-wrap: wrap;
}
.contact-item {
  width: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.contact-item .contact-icon {
  width: 75px;
  height: 75px;
  margin-right: 20px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--theme-color), var(--theme-background));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.contact-info p:nth-of-type(1) {
  color: #787878;
  font-weight: 400;
  font-size: 20px;
}
.contact-info p:nth-of-type(2) {
  color: #232323;
  font-size: 24px;
  white-space: nowrap;
}
.contact-left {
  width: 48%;
}
.form-box {
  width: 48%;
  padding: 50px 40px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-shadow: 0 0 32px 0 rgba(119, 223, 221, 0.141);
}
.form-box h2 {
  color: #232323;
  font-size: 36px;
  font-weight: 700;
  align-self: center;
  margin-bottom: 40px;
}
.form-box input,
.form-box textarea {
  width: 100%;
  height: 60px;
  border-radius: 30px;
  background: #f3f5fa;
  margin-bottom: 20px;
  padding: 0 30px;
  font-size: 18px;
}
.form-box textarea {
  height: 240px;
  padding: 30px;
  border: none;
  resize: none;
}
.form-box button {
  width: 220px;
  height: 60px;
  background: linear-gradient(90deg, var(--theme-color), var(--theme-background));
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border-radius: 30px;
  font-size: 24px;
  color: #fff;
  align-self: center;
}
#map {
  width: 100%;
  height: 500px;
}
/* 2023年8月7日18:03:26 */
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .about-us-left-btm-item-top,
  .english,
  .dynamic-list-item-title,
  .dynamic-list-item-btm-time,
  .contact-title,
  .news-detail-right .item-date,
  .news-detail-left-top p {
    background: linear-gradient(90deg, var(--theme-color), var(--theme-background));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
.product-detail-chanshu {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  margin: 20px 0;
}
.product-detail-chanshu p {
  display: flex;
  align-items: center;
  margin: 10px 0;
  color: #565656;
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
}
.product-detail-xh {
  margin: 20px 0;
  padding: 20px;
  flex: 1;
  background-color: #f5f5f5;
}
.product-detail-xh p {
  color: #565656;
  margin: 10px 0;
  font-size: 20px;
  line-height: 36px;
}
.product-detail-produce aside {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#duole3 {
  font-size: 14px;
  color: #333;
  font-weight: 700;
  padding: 8px 0;
  align-items: center;
  border-bottom: 1px solid #d4d4d4;
}
#duole3 img {
  width: 36px;
}
/* .product-detail-produce p {
  
  margin: 30px 0;
  flex: 1;
} */
/* .product-detail-chanshu p span {
  width: 30%;
  text-align: left;
}
.product-detail-chanshu p span:first-child {
  font-weight: bold;
} */
