*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 90px;
  }
}

html,
:host {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: 'Source Han Sans SC', 'Source Han Sans SC VF',
    'Source Han Sans CN', 'Source Han Sans CN VF', 'Noto Sans CJK SC',
    'HanHei SC', 'HarmonyOS Sans SC', '方正兰亭黑Pro Global', ui-sans-serif,
    sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji', emoji;
  line-height: 1.5;
  color: rgb(0 0 0 / 0.88);

  @media (prefers-reduced-motion: no-preference) {
    /* scroll-behavior: smooth; */
  }
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: inherit;
}

/* 文字样式 */
@font-face {
  font-family: 'HarmonyOS_Sans_SC';
  src: url(/fonts/HarmonyOS_Sans_SC.TTF) format('truetype');
}

@font-face {
  font-family: 'HarmonyOS-Sans-SC-Bold';
  src: url(/fonts/HarmonyOS_Sans_SC_Bold.TTF) format('truetype');
}

@font-face {
  font-family: 'HarmonyOS-Sans-SC-Light';
  src: url(/fonts/HarmonyOS_Sans_SC_Light.TTF) format('truetype');
}

@font-face {
  font-family: 'HarmonyOS_Sans_SC_Thin';
  src: url(/fonts/HarmonyOS_Sans_SC_Thin.TTF) format('truetype');
}

@font-face {
  font-family: 'HarmonyOS_Sans_SC_Medium';
  src: url(/fonts/HarmonyOS_Sans_SC_Thin.TTF) format('truetype');
}

.fonts-HarmonyOS_Sans_SC {
  font-family: 'HarmonyOS_Sans_SC';
}

.fonts-HarmonyOS-Sans-SC-Bold {
  font-family: 'HarmonyOS-Sans-SC-Bold';
}

.fonts-HarmonyOS-Sans-SC-Light {
  font-family: 'HarmonyOS-Sans-SC-Light';
}

.fonts-HarmonyOS_Sans_SC_Thin {
  font-family: 'HarmonyOS_Sans_SC_Thin';
}

.fonts-HarmonyOS_Sans_SC_Medium {
  font-family: 'HarmonyOS_Sans_SC_Medium';
}

svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* 公共样式 */
.swiper {
  --swiper-theme-color: #fff;
  --swiper-navigation-color: #fff;
  --swiper-navigation-size: calc(15px + 0.78125vw);
  --swiper-navigation-sides-offset: var(--nav-x-pc);
  --swiper-pagination-color: var(--primary-color);
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  --swiper-pagination-bottom: calc(12px + 0.933vw);
  --nav-x-pc: 3.3854vw;
  --nav-x-mobile: 20px;
}

.container-box {
  padding-left: clamp(50px, 8.333vw, 180px);
  padding-right: clamp(50px, 8.333vw, 180px);
}

.container-left {
  padding-left: clamp(50px, 8.333vw, 180px);
}

.container-left-margin {
  margin-left: clamp(50px, 8.333vw, 180px);
}

.container-left-margin li.active {
  font-weight: 700;
}

.container-right {
  padding-right: clamp(50px, 8.333vw, 180px);
}

.container-top {
  padding-top: clamp(50px, 4.6875vw, 90px);
}

.container-bottom {
  padding-bottom: clamp(40px, 4.166vw, 80px);
}

.list-box {
  padding-left: clamp(50px, 8.333vw, 180px);
}

.list-product {
  padding-right: clamp(50px, 8.333vw, 180px);
}

.switch-box .white {
  display: none;
}

.switch-box .black {
  display: block;
}

.switch-box p {
  color: #000;
}

.switch-box .active {
  background: #000;
}

.switch-box .active .white {
  display: block;
}

.switch-box .active .black {
  display: none;
}

.switch-box .active p {
  color: #fff;
}

.product-thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.product-details-list li:not(:last-child) {
  border-bottom: 1px solid #01010310;
}

.questions-list .questions.active {
  background: #000;
  color: #fff;
}

/* nav */
.nav-list-pc {
  position: relative;
}

.nav-list-pc.active::before {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background-color: #c2ff19;
  transition: all 0.5s;
}

.public-search-title.active::before {
  width: 100%;
}

.public-search-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  background: #000;
  z-index: 1;
  width: 0%;
  height: 1px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .container-left-margin li.active {
    font-weight: 400;
  }
}

.product-content img {
  display: inline-block;
}

/* 播放按钮 -开始 */
/*------ Settings ------*/
.play {
  --color: #fff;
  --size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: var(--size);
  user-select: none;
  fill: var(--color);
  width: 18px;
}

.play .play {
  position: absolute;
  animation: keyframes-fill .5s;
}

.play .pause {
  position: absolute;
  display: none;
  animation: keyframes-fill .5s;
}

/* ------ On check event ------ */
.play input:checked~.play {
  display: none;
}

.play input:checked~.pause {
  display: block;
}

/* ------ Hide the default checkbox ------ */
.play input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* ------ Animation ------ */
@keyframes keyframes-fill {
  0% {
    transform: rotate(-180deg) scale(0);
    opacity: 0;
  }

  50% {
    transform: rotate(-10deg) scale(1.2);
  }
}

/* 播放按钮 结束 */

/* 立即体验按钮 -开始 */
.experience {
  position: relative;
  margin: 0;
  padding: 13.5px 40px;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #000;
  border: 1px solid rgba(22, 76, 167, 0.6);
  border-radius: 28px;
  color: #fff;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.experience span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

.experience:hover {
  animation: rotate624 0.7s ease-in-out both;
}

.experience:hover span {
  animation: storm1261 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

@media (max-width: 768px) {
  .experience {
    padding: 6.5px 22px;
  }

  .experience span {
    font-size: 12px;
  }
}

@keyframes rotate624 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes storm1261 {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }

  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }

  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }

  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }

  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}

.btn-shine {
  border: 1px solid;
  overflow: hidden;
  position: relative;
}

.btn-shine span {
  z-index: 20;
}

.btn-shine:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.4;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}

.btn-shine:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* 立即体验按钮 -结束 */

/* 街未智控 */
.smart-box {
  width: 25%;
}

.smart-box.active {
  width: 50%;
}

@media (max-width: 768px) {
  .smart-box {
    width: 100%;
  }

  .smart-box.active {
    width: 100%;
  }
}


/* 侧边栏 -开始 */
ul {
  list-style: none;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 0.5rem;
}

.example-2 .icon-content {
  /* margin: 0 10px; */
  position: relative;
}

.example-2 .icon-content .tooltip {
  position: absolute;
  top: 20px;
  right: 60%;
  transform: translateX(-35px);
  color: #666;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
  width: max-content;
}

.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: 15px;
}

.example-2 .icon-content span {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .example-2 .icon-content span {
    width: 50px;
    height: 50px;
  }

  .example-2 .icon-content:hover .tooltip {
    top: 10px;
  }
}

.example-2 .icon-content span:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
  background-color: transparent;
}

.example-2 .icon-content span svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.example-2 .icon-content span:hover {
  color: #666;
}

.example-2 .icon-content span .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

.example-2 .icon-content span:hover .filled {
  height: 100%;
}

.example-2 .icon-content span[data-social="service"] .filled {
  background: linear-gradient(270deg, #C2FF19, #9AE916, #C2FF19);
}

.example-2 .icon-content span[data-social="service"]~.tooltip {
  background-color: #fff;
}

/* 侧边栏 -结束 */

/* 奇数元素样式 */
.product-content .box:nth-child(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  body {
    --swiper-scrollbar-size: 1.5px;
  }

  .container-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-left {
    padding-left: 20px;
  }

  .container-left-margin {
    padding-left: 20px;
    margin-left: 0px;
  }

  .container-right {
    padding-right: 20px;
  }

  .container-top {
    padding-top: 40px;
  }

  .container-bottom {
    padding-bottom: 30px;
  }

  .list-box,
  .list-product {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-content .box:nth-child(odd) {
    flex-direction: column;
  }
}

/* 勾选按钮 -开始*/
.ios-checkbox {
  --checkbox-size: 16px;
  --checkbox-color: #262629;
  --checkbox-bg: #262629;
  --checkbox-border: #E6E6EB;

  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}

@media (max-width:768px) {
  .ios-checkbox {
    gap: 5px;
  }
}

.ios-checkbox input {
  display: none;
}

.checkbox-wrapper {
  position: relative;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.checkbox-bg {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  border: 1px solid var(--checkbox-border);
  background: white;
  transition: all 0.2s ease;
}

.checkbox-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  color: white;
  transform: scale(0);
  transition: all 0.2s ease;
}

.check-path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 0.3s ease 0.1s;
}

/* Checked State */
.ios-checkbox input:checked+.checkbox-wrapper .checkbox-bg {
  background: var(--checkbox-color);
  border-color: var(--checkbox-color);
}

.ios-checkbox input:checked+.checkbox-wrapper .checkbox-icon {
  transform: scale(1);
}

.ios-checkbox input:checked+.checkbox-wrapper .check-path {
  stroke-dashoffset: 0;
}

/* Hover Effects */
.ios-checkbox:hover .checkbox-wrapper {
  transform: scale(1.05);
}

/* Active Animation */
.ios-checkbox:active .checkbox-wrapper {
  transform: scale(0.95);
}

/* Focus Styles */
.ios-checkbox input:focus+.checkbox-wrapper .checkbox-bg {
  box-shadow: 0 0 0 4px var(--checkbox-bg);
}

/* Animation */
@keyframes bounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.ios-checkbox input:checked+.checkbox-wrapper {
  animation: bounce 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 勾选按钮 -结束*/

/* header 开始 */
header ul .active {
  opacity: 1;
}

.button-box {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-box .span-mother {
  display: flex;
  overflow: hidden;
}

.go-shop:hover .span-mother span {
  transform: translateY(100%);
}

.button-box .span-mother span:nth-child(1) {
  transition: 0.2s;
}

.button-box .span-mother span:nth-child(2) {
  transition: 0.35s;
}

.button-box .span-mother span:nth-child(3) {
  transition: 0.5s;
}

.button-box .span-mother span:nth-child(4) {
  transition: 0.65s;
}

.button-box .span-mother2 {
  display: flex;
  position: absolute;
  overflow: hidden;
}

.button-box .span-mother2 span {
  transform: translateY(-100%);
}

.go-shop:hover .span-mother2 span {
  transform: translateY(0);
}

.button-box .span-mother2 span {
  transition: 0.2s;
}

.button-box .span-mother2 span:nth-child(2) {
  transition: 0.35s;
}

.button-box .span-mother2 span:nth-child(3) {
  transition: 0.5s;
}

.button-box .span-mother2 span:nth-child(4) {
  transition: 0.65s;
}

.product-details-list .active p {
  font-weight: bold;
  transition: all 0.5s ease;
}

.product-details-list .active .border-box {
  width: 100%;
  transition: all 0.5s ease;
}

/* 111111111111下面的可以删除 */
header .nav-title {
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

header .nav-title::after {
  position: absolute;
  bottom: 0px;
  width: 0%;
  left: 0;
  height: 2px;
  content: '';
  background: #0053A3;
  transition: all 0.5s ease;
}

header .nav-title.active::after {
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0;
  height: 2px;
  content: '';
  background: #0053A3;
}

header .nav-title .nav-img {
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

header .nav-title:hover .nav-img {
  transform: rotate(180deg);
  filter: grayscale(0%);
}

header .nav-title:hover::after {
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0;
  height: 2px;
  content: '';
  background: #0053A3;
}

header .nav-title:hover {
  color: #0053A3 !important;
}

header .nav-title.active {
  color: #0053A3 !important;
  font-weight: 800;
}

header .nav-title.active .nav-img {
  filter: grayscale(0%);
}

/* header 结束 */


/* 手机菜单按钮 -开始 */
.menu-icon {
  display: none;
  position: relative;
  width: 32px;
  height: 32px;
  /* background: rgb(0, 0, 0); */
  padding: 5px;
  cursor: pointer;
}

.menu-icon input {
  display: none;
}

.menu-icon span {
  display: block;
  position: relative;
  height: 2px;
  width: 100%;
  background: #1D3C7C;
  border-radius: 10px;
  opacity: 1;
  left: 0;
  margin-bottom: 24%;
  transition: 0.3s ease-in-out;
}

.menu-icon span {
  transform-origin: left center;
}

.menu-icon input:checked~span {
  background: #1D3C7C;
  left: 4px;
  margin-bottom: 26%;
}

.menu-icon input:checked~span:nth-of-type(1) {
  transform: rotate(45deg);
}

.menu-icon input:checked~span:nth-of-type(2) {
  opacity: 0;
}

.menu-icon input:checked~span:nth-of-type(3) {
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .menu-icon {
    display: block;
    padding-top: 7px;
  }
}

/* 搜索 */
.search-box {
  backdrop-filter: blur(16px) brightness(90%);
  background-color: rgba(255, 255, 255, 0.5);
}

.search-box .input-group {
  display: flex;
  gap: 10px;
  position: relative;
  width: 30%;
  margin-bottom: 10px;
  margin-top: 2px;
}

.search-box .input-text {
  font-family: inherit;
  width: 100%;
  border: none;
  border-bottom: 2px solid #fff;
  border-radius: 0 !important;
  outline: 0;
  font-size: 17px;
  color: #fff;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.search-box .input-text::placeholder {
  color: transparent;
}

.search-box .input-text:placeholder-shown~.input-text-label {
  font-size: 17px;
  cursor: text;
}

.search-box .input-text-label {
  position: absolute;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: #fff;
  pointer-events: none;
}

.search-box .input-text:focus {
  padding-bottom: 6px;
  border-width: 3px;
  border-image: linear-gradient(to right, #1D3C7C, rgba(255, 255, 255, 0));
  border-image-slice: 1;
}

.search-box .input-text:focus~.input-text-label {
  color: #1D3C7C;
}

.search-box .input-text:not(:placeholder-shown)~.input-text-label,
.search-box .input-text:focus~.input-text-label {
  position: absolute;
  display: block;
  transition: 0.2s;
  font-size: 15px;
  font-weight: 700;
  top: -17px;
}

.search-box .input-text:required,
.search-box .input-text:invalid {
  box-shadow: none;
}

/* 手机菜单结束 */
header .header-nav .active {
  opacity: 1;
}

header .header-nav .nav-wap-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fff;
  color: #333;
  text-align: center;
  font-size: 16px;
  display: none;
  padding-top: 60px;
}

header .header-nav .nav-wap-content .nav-wap-box {
  overflow-y: auto;
  height: 100%;
}

header .header-nav .nav-wap-content .box-ul {
  padding-top: 40px;
}

header .header-nav .nav-wap-content .box-ul .box-li {
  opacity: 0;
  transform: translateY(-50%);
  padding: 15px 0;
}

header .header-nav .nav-wap-content .box-ul .box-li .box-li-title {
  cursor: pointer;
}

/* banner 开始 */
.banner-swiper {
  /* --swiper-pagination-top:20px; */
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-width: 6px;
  --swiper-pagination-bullet-height: 6px;
  --swiper-pagination-bullet-horizontal-gap: 0px;
  --swiper-pagination-bullet-circle-width: 30px;
  --swiper-pagination-bullet-circle-height: 30px;
  /* left: 60px; */
}

.banner-swiper .swiper-scrollbar-drag {
  background: #fff;
}

.banner-swiper .swiper-slide .banner-title {
  transform: translateY(-100%);
  opacity: 0;
}

.banner-swiper .swiper-slide .banner-title2 {
  transform: translateY(-60%);
  opacity: 0;
}

.banner-swiper .swiper-slide .watch-btn {
  transform: translateY(-100%);
  opacity: 0;
}

.banner-swiper .swiper-slide-active .banner-title {
  transform: translateY(0);
  opacity: 1;
  transition: all .6s 0s ease-in-out;
}

.banner-swiper .swiper-slide-active .banner-title2 {
  transform: translateY(0);
  opacity: 1;
  transition: all .6s 0.13s ease-in-out;
}

.banner-swiper .swiper-slide-active .watch-btn {
  transform: translateY(0);
  opacity: 1;
  transition: all .6s 0.26s ease-in-out;
}

.banner-swiper .swiper-slide img {
  width: 100%;
  height: 100vh;
  min-height: 100%;
  //transition:1s linear 2s;
  //transform:scale(1,1);
}

.banner-swiper .swiper-slide-active img,
.swiper-slide-duplicate-active img {
  transition: 6s linear;
  transform: scale(1, 1);
}

@media (max-width: 1536px) {

  .banner-swiper .swiper-horizontal>.swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    bottom: 30%;
    left: 8vw;
  }
}

@media (max-width: 1280px) {
  .banner-swiper {
    --swiper-pagination-bullet-width: 4px;
    --swiper-pagination-bullet-height: 4px;
  }

  .banner-swiper .swiper-pagination {
    gap: 40px;
    right: 30px !important;
    left: auto !important;
  }

  .banner-swiper .swiper-horizontal>.swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    bottom: 30%;
    left: 5vw;
  }
}

@media (max-width: 768px) {
  .banner-swiper .swiper-slide img {
    height: 350px;
  }

  .banner-swiper {
    --swiper-pagination-bullet-width: 3px;
    --swiper-pagination-bullet-height: 3px;
  }

  .banner-swiper .swiper-pagination {
    gap: 30px;
    right: 20px !important;
    left: auto !important;
  }
}

.circle-md145 #circle-md145-stroke {
  transition: all 1s 0.5s;
}

.circle-md145 #circle-md145-stroke-one {
  transition: all 0.5s;
}

.circle-md145 #circle-md145-stroke-one {
  stroke-dashoffset: 360;
  stroke-dasharray: 360, 360;
}

.circle-md145 #circle-md145-stroke {
  stroke-dashoffset: 360;
  stroke-dasharray: 360, 360;
}

.circle-md145:is(.active) #circle-md145-stroke {
  stroke-dashoffset: 0;
  transition-duration: 5s;
  transition-timing-function: linear;
  transition-delay: 1s;
}

.circle-md145:is(.active) #circle-md145-stroke-one {
  stroke-dashoffset: 0;
  transition-timing-function: linear;
  transition-duration: 1s;
}

/* banner 结束 */

/* 智能banner -开始*/
.banner-pc {
  display: block;
}

.banner-wap {
  display: none;
}

.smart-swiper .swiper-slide .banner-title {
  transform: translateY(-100%);
  opacity: 0;
}

.smart-swiper .swiper-slide .banner-title2 {
  transform: translateY(-60%);
  opacity: 0;
}

.smart-swiper .swiper-slide .watch-btn {
  transform: translateY(-100%);
  opacity: 0;
}

.smart-swiper .swiper-slide-active .banner-title {
  transform: translateY(0);
  opacity: 1;
  transition: all .6s 0.85s ease-in-out;
}

.smart-swiper .swiper-slide-active .banner-title2 {
  transform: translateY(0);
  opacity: 1;
  transition: all .6s 0.98s ease-in-out;
}

.smart-swiper .swiper-slide-active .watch-btn {
  transform: translateY(0);
  opacity: 1;
  transition: all .6s 1.11s ease-in-out;
}

/* 智能banner -结束*/

.smart-boder {
  border-radius: 16px;
  border: 2px solid;
  background: #000;
  border-image: linear-gradient(-1deg, #000000, #000000, #000000) 10 10;
  transition: all 0.3s ease;
}

.smart-boder:hover {
  border-image: linear-gradient(-1deg, #7BB717, #000000, #C2FF19) 10 10;
}

/* 核心动画定义 */
@keyframes zoomInOut {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

.animated-bg {
  width: 100%;
  height: 100%;
  background-image: url('/Files/Image/theme/smart-bg1.jpg');
  background-size: cover;
  animation: zoomInOut 18s linear infinite;
  /* 应用动画 */
}

.border-card {
  --border-radius: clamp(10px, 0.9375vw, 18px);
  position: relative;
  transition: all 0.3s ease;
}

.border-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: var(--border-radius);
  background: linear-gradient(-1deg, #000000, #000000, #000000);
  z-index: -1;
  transition: all 0.3s ease;
}

.border-card img {
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.active.border-card img {
  filter: grayscale(0);
}

.active.border-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: var(--border-radius);
  background: linear-gradient(-1deg, #7BB717, #000000, #C2FF19);
  z-index: -1;
}

/* 新闻 开始 */
.news-title p.active {
  background: #1D3C7C;
  color: #fff;
}

.news-page .active {
  background: #C7161C;
}

/* 新闻 结束 */

.member-box .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  /*之前是ease-out*/
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}

.menu-box li {
  transition: all 0.5s ease;
}

.menu-box li.active img,
.menu-box li:hover img {
  filter: brightness(0) invert(1);
}

.menu-box .active,
.menu-box li:hover {
  background: #3B5998;
}

.menu-box .active span,
.menu-box li:hover span {
  color: #fff;
}

.list-box li::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  content: '';
  background: #1D3C7C;
  transition: all 0.5s ease;
}

.list-box li:hover::after {
  width: 100%;
}

.slider-swiper .active {
  border-bottom: 1px solid #1D3C7C;
}

.slider-swiper .active a {
  color: #1D3C7C;
}

/* 分页 -开始 */
.page .page-box {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.page .page-box .inner {
  width: 50px;
  height: 50px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background: #ffffff;
  text-align: center;
  line-height: 50px;
  font-size: clamp(14px, 0.8854vw, 17px);
  color: #999999;
  cursor: pointer;
}

.page .page-box .inner:hover {
  background: #000;
  color: #fff;
  border: unset;
}

.page .page-box .inner.active {
  background: #000;
  color: #fff;
  border: unset;
}

.page .page-box .dot {
  width: 50px;
  height: 50px;
  border-radius: 2px;
  background: #ffffff;
  text-align: center;
  font-size: 22px;
  color: #999999;
  cursor: pointer;
}

.page .page-box .page-pre {
  margin-right: 0.09rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 70px;
}

.page .page-box .page-pre:hover {
  background: #000;
}

.page .page-box .page-pre:hover img {
  filter: brightness(0) invert(1);
}

.page .page-box .page-next {
  margin-right: 0.09rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
}

.page .page-box .page-next img {
  transform: rotate(180deg);
}

.page .page-box .page-next:hover {
  background: #000;
}

.page .page-box .page-next:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .banner-pc {
    display: none;
  }

  .banner-wap {
    display: block;
  }

  .page .page-box .inner {
    width: 30px;
    height: 30px;
    font-size: 13px;
    line-height: 30px;
  }

  .page .page-box .dot {
    width: 30px;
    height: 30px;
    font-size: 13px;
    line-height: 30px;
  }

  .page .page-box .page-pre,
  .page .page-box .page-next {
    display: none;
  }

  .page .page-box .page-pre img,
  .page .page-box .page-next img {
    width: 7px;
  }

  .page .page-box .dot {
    font-size: 13px;
    line-height: 20px;
  }
}

/* 分页 -结束 */
@media (max-width: 768px) {
  .yaotu {
    object-position: -70px;
  }
}


/* 飘窗 */
#floating-popup {
  position: absolute;
  width: 187px;
  height: 80px;
  cursor: pointer;
  /* cursor: grab; */
  z-index: 99;
}

#floating-popup:hover {
  /* transform: scale(1.02); */
}

#popup-header {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

#close-btn {
  color: #666;
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  right: 5px;
  top: 5px;
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
}

.news-details img {
  display: inline-block !important;
}

.service-nav .nav-box .nav-content:not(:first-child) {
  margin-top: 8px;
}

.service-nav .nav-content.active:not(.nav-has-child) .nav-title {
  background: #00000014;
}

.service-nav .nav-content .nav-title:hover {
  background: #00000014;
}

.nav-child-box .nav-child-content {
  margin-top: 8px;
}

.nav-child-box .nav-child-content:hover {
  background: #00000014;
}

.nav-child-box .nav-child-content.current {
  background: #00000014;
}

/* 联系我们 -开始*/
.check-box .checked-bg {
  transition: all 0.5s ease;
}

.check-box .active .checked-bg {
  background: #C2FF19;
}

/* 联系我们 -结束*/


/* 产品详情页 修改 */
.container-box .product-content {
  display: none;
}

.container-box .product-content.active {
  display: block;
}

.compatibility-tit-itme.active,
.technology-tit-itme.active {
  background: #000;
  color: #fff;
}

.table-container {
  display: none;
}

.table-container.active {
  display: block;
}
.table-container .dataTable {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.dataTables_filter{
  margin-bottom: 10px;
}