/* @font-face {
  font-family: "PingFangMedium";
  src: url("./font/PingFang Medium.ttf");
  font-weight: normal;
  font-style: normal;
} */
@font-face {
  font-family: "MontserratBold";
  src: url("./font/Montserrat-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}

* {
  -webkit-tap-highlight-color: transparent;
}
body,
div,
button,
input,
select,
textarea {
  /* font-family: PingFangMedium; */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC",
    "Microsoft YaHei", Arial, "Helvetica Neue", Helvetica, "Hiragino Sans GB",
    "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
th,
td,
p,
blockquote,
pre,
form,
fieldset,
legend,
input,
button,
textarea,
article,
aside,
footer,
header,
hgroup,
nav,
section,
menu {
  margin: 0;
  padding: 0;
}
em,
i {
  font-style: normal;
}
li {
  list-style: none;
}
img {
  border: 0;
  caret-color: rgba(0, 0, 0, 0);
}
input,
img {
  vertical-align: middle;
}
article,
aside,
footer,
header,
hgroup,
nav,
section,
menu {
  display: block;
}
a {
  text-decoration: none;
}
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* html,body{height:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;color: #666666;background-color:#f3f5f7 !important;}
a,input,textarea{-webkit-tap-highlight-color:rgba(0,0,0,0);tap-highlight-color:rgba(0,0,0,0);outline:none; -webkit-font-smoothing:antialiased} */
body,
html {
  width: 100%;
  height: 100%;
}

.lt {
  float: left;
}
.rt {
  float: right;
}
.clear::after {
  content: "";
  display: block;
  clear: both;
}
.textCenter {
  text-align: center;
}
.textRight {
  text-align: right;
}
.flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flexcolumn {
  flex-direction: column;
}
.flexwrap {
  flex-wrap: wrap;
}
.rowreverse {
  flex-direction: row-reverse;
}
.justifyStretch {
  justify-content: stretch;
}
.justifyStart {
  justify-content: flex-start;
}
.justifyCenter {
  justify-content: center;
}
.justifyEnd {
  justify-content: flex-end;
}
.justifyBetween {
  justify-content: space-between;
}
.justifyArround {
  justify-content: space-around;
}
.justifyEvenly {
  justify-content: space-evenly;
}
.alignStretch {
  align-items: stretch;
}
.alignStart {
  align-items: flex-start;
}
.alignCenter {
  align-items: center;
}
.alignEnd {
  align-items: flex-end;
}
.webkitBox {
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.footerMCode {
  width: 3vw;
  height: 3vw;
}
.dialogWin {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.closeDialog {
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.dialogWinBg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.dialogBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Intelligence Platform悬浮样式*/
.navItem {
  position: relative; /* 为下拉菜单提供定位参考 */
}

.submenu {
  display: none; 
  position: absolute;
  top: 100%; 
  left: 50%; 
  transform: translateX(-50%); 
  background: #ffffff; 
  border: 1px solid #e0e0e0; 
  border-radius: 12px; 
  padding: 2px 0; 
  list-style: none;
  margin: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); /* 柔和阴影 */
  min-width: 220px; /* 最小宽度 */
}

.submenu a {
  display: block;
  padding: 8px 24px;
  text-decoration: none;
  color: #333333; /* 文字颜色 */
  transition: background-color 0.3s, color 0.3s; /* 过渡效果 */
  font-size: 16px; /* 文字大小 */
}

.submenu a:hover {
  background-color: #FFF; /* 悬停背景色 */
  color: #03BCBE; /* 悬停文字颜色 */
}

.navItem:hover .submenu {
  display: block; /* 鼠标悬停时显示 */
}


/* 一行超出显示。。。 */
.oneLineEllipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* 多行文本超出显示。。。需配合webkitBox类，同时元素自己设置超出几行数值 */
.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
}
.pcHide {
  /* display: none; */
  display: block;
}
/* .mHide {
  display: none !important;
} */

/*头部固定*/
.headers {
  width: 100%;
  height: auto;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.8);
  caret-color: rgba(0, 0, 0, 0);
}
.headms {
  width: 100vw;
  height: 80px;
  line-height: 80px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  caret-color: rgba(0, 0, 0, 0);
  padding: 0px 17vw;
  align-items: center;

}
.navLogoLink {
  font-size: 20px;
  display: block;
  /* margin-left: 20px; */
  position: relative;
  caret-color: rgba(0, 0, 0, 0);
}
.navLogo {
  width: 142px;
  height: 80px;
  caret-color: rgba(0, 0, 0, 0);
}
.navList {
  font-size: 20px;
  width: 660px;
  display: flex;
  justify-content: space-between;
  /* margin-right: 40px; */
  position: relative;
  caret-color: rgba(0, 0, 0, 0);
}
.navItem {
  font-size: 16px;
  text-align: center;
  caret-color: rgba(0, 0, 0, 0);
}
.navItemLink {
font-size: 16px;
  color: #fff;
  caret-color: rgba(0, 0, 0, 0);
}
.navItemLink:hover {
  color: #03bcbe;
}
.navItem.active .navItemLink {
  color: #03bcbe;
  caret-color: rgba(0, 0, 0, 0);
}

.foots {
  background-color: #00050e;
}
.footsm {
  box-sizing: border-box;
  display: flex;
  height: 272px;
  justify-content: space-between;
  padding: 30px 17vw 0px 17vw;
  margin-bottom: 20px;
}
.fooder{
height: 0px;
border: 1px solid rgba(255,255,255,0.2);
}
.footsml {
  width: 140px;
  color: #ffffff;
}
.footerInfoCaption {
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  line-height: 14px;
  text-align: left;
  margin-bottom: 24px;
}
.footerInfo {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #9e9e9e;
  line-height: 14px;
  text-align: left;
  margin-bottom: 20px;
}
.footerInfoLink:hover {
  color: #03bcbe;
}
.footsmc {
  /* width: 714px; */
  color: #ffffff;
}

.footsmr {
  /* width: 220px; */
  color: #ffffff;
  /* padding-right: 40px; */
}

.footsmrm {
  /* width: 115px; */
  /* height: 66px; */
  text-align: center;
}
.footerCodeIcon {
  width: 40px;
  height: 40px;
}
.footerCodeTxt {
  margin-top: 12px;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #ffffff;
  width: 120px;
}
.footsf {
  /* width: 1240px; */
  height: 80px;
  margin-top: 24px;
  font-weight: 400;
  font-size: 14px;
  color: #9e9e9e;
  line-height: 14px;
  text-align: center;
}
.footsf div {
  margin-bottom: 10px;
}
.footsmr .footsmrimg1 {
  display: none;
  width: 100px;
  height: 100px;
  background: url(../images/wxgzh.png) center center no-repeat;
  background-size: contain;
  margin-top: 10px;
}
.footsmr .footsmrimg2 {
  display: none;
  width: 100px;
  height: 100px;
  background: url(../images/wxsph.png) center center no-repeat;
  background-size: contain;
  margin-top: 10px;
}
.footsmr .footsmrimg3 {
  display: none;
  width: 100px;
  height: 100px;
  /* background: url(../images/wxdy.png) center center no-repeat; */
  background: url(../images/xcx.png) center center no-repeat;
  background-size: contain;
  margin-top: 10px;
}
.title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title h1 {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 20px;
}

.title p {
  text-align: center;
  margin-bottom: 40px;
  color: #CBD4E2;
  font-size: 20px;
  letter-spacing: 1px;
  width: 55%;
}


@media (max-width: 1500px) {
  .footerInfo {
    font-size: 11px;
    margin-bottom: 16px;
  }
  .headms {
    /* width: 1082px; */
    height: 57px;
    line-height: 57px;
    font-weight: 600;
    font-size: 11px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .navLogoLink {
    margin-left: 14px;
    font-size: 14px;
  }
  .navLogo {
    width: 111px;
    height: 63px;
  }
  .navList {
    font-size: 14px;
    /* width: 470px; */
    display: flex;
    justify-content: space-between;
    /* margin-right: 28px; */
    position: relative;
  }
  .navItem {
    font-size: 14px;
    text-align: center;
  }
  .navItemLink {
    font-size: 13px;
  }
  .navItemLink:hover {
    color: #03bcbe;
  }
  .footsm {
    /* max-width: 1500px; */
    justify-content: space-between;
    
    margin-bottom: 16px;
  }
  .footsmc{
    width: auto;
    margin-left: 10px;
  }
  .footsf {
    font-size: 11px;
  }
  .footerCodeTxt {
    font-size: 11px;
    width: 90px;
  }
}

@media screen and (max-width: 750px) {
  .submenu {
    /* 其他样式 */
    z-index: 100; /* 设置一个相对较高的值，具体数值可根据实际情况调整 */
}
  .mHide {
    display: none !important;
  }
  .pcHide {
    display: block;
  }
  .fooder{
    margin-top: 0.32rem;
    }
  /* 头部 */
  .headers {
    height: 1.28rem;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .headms {
    width: 100%;
    height: 100%;
    line-height: unset;
     padding: 0px 10px 0px 0px
  }
  .navLogoLink {
    z-index: 100;
    margin-left: 0;
  }
  .navLogo {
    width: 2.3rem;
    height: auto;
    margin-left: 0;
  }
  .hamburger {
    position: relative;
    z-index: 1000;
    width: 0.48rem;
    height: 0.48rem;
    /* margin: 0 0.2rem 0 0; */
    padding: 0.2rem;
    background: url("../images/hamburger.png") center center/0.48rem auto
      no-repeat;
  }
  .hamburger.active {
    background: url("../images/close.png") center center/0.48rem auto no-repeat;
  }
  .navList {
    display: none;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    /* display: block; */
    width: 100%;
    height: 100%;
    padding: 1.28rem 0.4rem 0;
    background-color: #000;
  }
  .hamburger.active + .navList {
    display: block;
  }
  /* .navList.show {
    display: block;
  } */
  .navItem {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #404040;
  }
  .navItem::before {
    content: "";
    width: 3px;
    height: 0.4rem;
    border-radius: 2px;
    background-color: #000;
  }
  .navItem.active::before {
    background-color: #03bcbe;
  }
  .navItemLink {
    flex: auto;
    font-size: 0.32rem;
    text-align: right;
  }

  /* 底部 */
  .foots {
    height: auto;
    padding: 0.48rem 0px;
  }
  .footsm {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 0 0.36rem;
  }
  .footsmc,
  .footsmr {
    width: 100%;
  }
  .footsmc {
    margin-bottom: 0.6rem;
    margin-left: 0px;
  }
  .footerInfoCaption {
    margin-bottom: 0.24rem;
    font-size: 0.28rem;
    font-weight: 500;
    text-align: center;
  }
  .footerInfo {
    margin-bottom: 0.3rem;
    font-size: 0.24rem;
    line-height: 0.4rem;
  }
  .footerInfoTip {
    margin-bottom: 0.56rem;
    text-align: center;
  }
  .footsmrm {
    width: auto;
  }
  .footerMCode {
    width: 1.6rem;
    height: 1.6rem;
  }
  .footerCodeTxt {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.24rem;
    margin-bottom: 0.32rem;
  }
  .footsf {
    width: 100%;
    height: auto;
    margin-top: 0.7rem;
    padding: 0.24rem 0;
    font-size: 0.24rem;
    line-height: 0.24rem;
  }
}
