* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-text-size-adjust: none;
}
input {
  outline: none;
}
/* 引入字体 */
@font-face {
}
/* 滚动条 */
body::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #eee;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb {
  background: #234fdd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:vertical:hover {
  background: #234fdd;
}
a {
  text-decoration: none;
}
.un-scroll {
  overflow: hidden;
}
p {
  text-indent: 2em;
}
.up-box {
  overflow: hidden;
}
.up-box .up-item {
  opacity: 0;
  transition: all ease 0.5s;
  transform: translate3d(0, 100%, 0);
}
.up-box .up-left-item {
  opacity: 0;
  transition: all ease 0.5s;
  transform: translate3d(-100%, 0, 0);
}
.up-box .up-right-item {
  opacity: 0;
  transition: all ease 0.5s;
  transform: translate3d(100%, 0, 0);
}
.up-box .up-down-item {
  opacity: 0;
  transition: all ease 0.5s;
  transform: translate3d(0, -100%, 0);
}
.up .up-item,
.up .up-left-item,
.up .up-right-item,
.up .up-down-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
ul {
  list-style-type: none;
}
.pagination {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0;
}
.page-item {
  margin: 0 5px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  cursor: pointer;
}
.page-item.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}
@keyframes sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  100% {
    transform: skewY(-45deg) translateX(12.5em);
  }
}
.wrapper {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.productButton {
  padding: 0.7292vw 1.7188vw;
  text-align: center;
  text-decoration: none;
  color: #234fdd;
  border: 2px solid #234fdd;
  font-size: 1.3542vw;
  display: inline-block;
  border-radius: 0.625vw;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  background: rgba(35, 79, 221, 0.06);
}
.productButton:before {
  content: '';
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  transform: skewX(-45deg) translateX(0);
  transition: none;
}
.productButton:hover {
  background-color: #234fdd;
  color: #fff;
}
.productButton:hover:before {
  transform: skewX(-45deg) translateX(13.5em);
  transition: all 0.5s ease-in-out;
}
.button {
  padding: 0.7292vw 1.7188vw;
  text-align: center;
  text-decoration: none;
  color: #234fdd;
  border: 2px solid transparent;
  font-size: 1.0417vw;
  display: inline-block;
  border-radius: 1.7188vw;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  background-color: #f8fbff;
  box-sizing: border-box;
  border-bottom: 0.2083vw solid transparent;
  /* 添加这一行来保持边框宽度一致 */
}
.button:before {
  content: '';
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  transform: skewX(-45deg) translateX(0);
  transition: none;
}
.button:hover {
  background-color: #2cb7fc;
  color: #fff;
  border-bottom: 0.2083vw solid #03a3f2;
}
.button:hover:before {
  transform: skewX(-45deg) translateX(13.5em);
  transition: all 0.5s ease-in-out;
}
.pd-btn {
  align-items: center;
  background-color: #ffffff;
  border: 0 !important;
  box-sizing: border-box;
  color: #234fdd;
  cursor: pointer;
  display: flex;
  font-size: 1.0417vw;
  height: 2.9167vw;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 10.3125vw;
  z-index: 1;
}
.g_generalContent {
  margin: 9.375vw 0 4.1667vw 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.g_generalContent :nth-child(1) {
  margin-bottom: 0.8854vw;
}
.gFirstLevelTitle {
  font-weight: 600;
  font-size: 1.5625vw;
  color: #000000;
  text-align: left;
  font-style: normal;
}
.gSecondaryTitle {
  font-weight: 400;
  font-size: 0.8333vw;
  color: #234fdd;
  text-align: left;
  font-style: normal;
}
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(124, 121, 121, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #09f;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.newsDetail-page {
  opacity: 0;
  transition: opacity 0.1s;
}
.newsDetail-page.loaded {
  opacity: 1;
}
#header {
  z-index: 999;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
#header .header-box {
  height: 5.2083vw;
  min-height: 40px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.1667vw;
}
#header .header-box .header-left {
  display: flex;
}
#header .header-box .header-left .language {
  font-size: 0.8333vw;
  color: rgba(255, 255, 255, 0.51);
  padding-right: 4.6875vw;
  font-weight: 400;
  display: flex;
  align-items: center;
}
#header .header-box .header-left .language .header-logo {
  display: inline-block;
  width: 3.75vw;
}
#header .header-box .header-left .language .header-logo-text {
  display: inline-block;
  width: 7.8125vw;
}
#header .header-box .header-right .menu-box {
  display: flex;
}
#header .header-box .header-right .menu-box .menu-item {
  margin-right: 5.9375vw;
  position: relative;
}
#header .header-box .header-right .menu-box .menu-item .down {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translate3d(-50%, 0, 0);
}
#header .header-box .header-right .menu-box .menu-item .down-item {
  padding: 0.5208vw 1.0417vw;
  border-bottom: 1px solid #ccc;
}
#header .header-box .header-right .menu-box .menu-item .down-item a {
  color: #000;
  display: block;
  white-space: nowrap;
}
#header .header-box .header-right .menu-box .menu-item a {
  display: block;
  font-size: 0.8333vw;
  color: #ffffff;
  font-weight: bold;
  position: relative;
}
#header .header-box .header-right .menu-box .menu-item a:hover::after {
  opacity: 1;
  bottom: -0.2604vw;
  background: #fff;
}
#header .header-box .header-right .menu-box .menu-item a::after {
  transition: all ease 0.3s;
  content: '';
  position: absolute;
  left: 0;
  bottom: -1.0417vw;
  width: 100%;
  height: 1px;
  background: none;
  display: block;
}
#header .header-box .header-right .menu-box .menu-item:last-child {
  margin-right: 0;
}
#header .header-box .header-right .menu-box .menu-item.active a::after {
  opacity: 1;
  bottom: -0.2604vw;
  background: #fff;
}
#header .header-box .phone-menu {
  display: none;
}
.phone .header-box .header-right {
  transform: translate3d(0, 0, 0) !important;
}
.phone .header-box .header-right .menu-box {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.phone .header-box .header-right .menu-box .menu-item {
  width: 100%;
  margin-right: 0 !important;
  text-align: center;
  margin-bottom: 30px;
  padding: 8px 0;
}
.phone .header-box .header-right .menu-box .menu-item a {
  font-size: 18px !important;
}
.phone .header-box .header-right .menu-box .menu-item a::after {
  display: none !important;
}
.phone .header-box .header-right .menu-box .menu-item:last-child {
  margin-bottom: 0;
}
.phone .header-box .header-right .menu-box .menu-item .down {
  margin-top: 15px;
  position: relative !important;
  left: unset !important;
  top: unset !important;
  background: none !important;
  width: 100% !important;
  transform: unset !important;
}
.phone .header-box .header-right .menu-box .menu-item .down::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 0;
  transform: translate3d(-50%, 0, 0);
  width: 50%;
  height: 1px;
  background: #fff;
}
.phone .header-box .header-right .menu-box .menu-item .down .down-item {
  padding: 8px !important;
  border-bottom: none !important;
}
.phone .header-box .header-right .menu-box .menu-item .down .down-item a {
  color: #fff !important;
  font-size: 14px !important;
}
.footer-box {
  width: 100%;
  background: #000000;
}
.footer-box .footer-top {
  padding: 3.6458vw 17.7083vw 0 17.7083vw;
  display: flex;
  width: 100%;
}
.footer-box .footer-top .f-left {
  width: 40%;
}
.footer-box .footer-top .f-left .f-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.1458vw;
}
.footer-box .footer-top .f-left .f-logo .f-logo-img {
  width: 3.6458vw;
}
.footer-box .footer-top .f-left .f-logo .f-logo-text {
  width: 7.8125vw;
}
.footer-box .footer-top .f-left .f-contant .contant-item {
  font-weight: 400;
  font-size: 0.8333vw;
  color: #ffffff;
  line-height: 1.1458vw;
  text-align: left;
  font-style: normal;
  margin-bottom: 1.0938vw;
}
.footer-box .footer-top .f-left .f-ewm {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.4583vw;
}
.footer-box .footer-top .f-left .f-ewm img {
  width: 4.2188vw;
}
.footer-box .footer-top .f-left .f-ewm div {
  margin-left: 0.4167vw;
  font-weight: 400;
  font-size: 0.625vw;
  color: #ffffff;
  line-height: 0.8854vw;
  text-align: left;
  font-style: normal;
}
.footer-box .footer-top .f-right {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
.footer-box .footer-top .f-right .f-right-item a {
  font-weight: 500;
  font-size: 1.0417vw;
  color: #ffffff;
  line-height: 1.4583vw;
}
.footer-box .footer-bottom {
  padding: 2.2396vw 0;
  width: 100%;
  background: #112b58;
  font-weight: 400;
  font-size: 0.8333vw;
  color: #ffffff;
  line-height: 1.1458vw;
  display: flex;
  justify-content: center;
}
.footer-box .footer-bottom :nth-child(2) {
  margin-left: 20px;
}
#top .top-box {
  position: fixed;
  right: 30px;
  bottom: 10%;
  z-index: 999;
  width: 50px;
  height: 50px;
  display: none;
  /* 默认隐藏 */
  border-radius: 50%;
  background: rgba(204, 204, 204, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
#top .top-box span {
  font-size: 30px;
  color: #131212;
}
#top .top-box:hover {
  background: #cccccc;
}
#container {
  width: 100%;
  height: 40.5208vw;
  background-color: #0d72f6;
}
.superscript {
  font-size: 1.25vw;
  /* 调整上标的字体大小 */
  vertical-align: super;
  /* 将上标提升 */
  position: relative;
  /* 相对定位 */
  top: -0.2em;
  /* 根据需要调整这个值来控制上标的位置 */
}
.index-page {
  background-color: #f8fbff;
}
.index-page .index .banner {
  position: relative;
}
.index-page .index .banner img {
  width: 100%;
  height: 100vh;
}
.index-page .index .banner-text {
  position: absolute;
  top: 21.8229vw;
  left: 28.125vw;
}
.index-page .index .banner-text .banner-title {
  color: #ffffff;
  font-size: 1.1458vw;
  font-weight: 400;
  margin-bottom: 1.4583vw;
}
.index-page .index .banner-text .banner-subtitle {
  font-weight: 600;
  font-size: 1.3542vw;
  color: #ffffff;
  text-shadow: 0 0.3125vw 0.4167vw rgba(0, 0, 0, 0.63);
  text-align: left;
  font-style: normal;
  margin-bottom: 2.0833vw;
}
.index-page .index .banner-text .banner-btn {
  width: 15.8854vw;
  padding: 1.1979vw !important;
  background: linear-gradient(90deg, #0d72f6 0%, #2cb7fc 100%);
  border-radius: 2.8646vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-page .index .banner-text .banner-btn span {
  color: #ffffff;
  font-size: 1.25vw;
  font-weight: 500;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-page .index .banner-text .banner-btn span sup {
  font-size: 1.25vw;
}
.index-page .index1 {
  width: 100%;
}
.index-page .index1 .g_advantage {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 0.2083vw 0.8333vw 0 #e4e4e4;
  padding: 3.125vw 13.5417vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-page .index1 .g_advantage .advantage {
  justify-content: space-between;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-page .index1 .g_advantage .advantage :nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.2917vw;
  height: 7.2917vw;
  margin-bottom: 1.3542vw;
}
.index-page .index1 .g_advantage .advantage :nth-child(1) span {
  font-size: 3.6458vw;
  color: #234fdd;
}
.index-page .index1 .g_advantage .advantage :nth-child(1):hover {
  width: 7.2917vw;
  height: 7.2917vw;
  background: #234fdd;
  border-radius: 0.4167vw;
}
.index-page .index1 .g_advantage .advantage :nth-child(1):hover :nth-child(1) {
  color: #ffffff;
}
.index-page .index1 .g_advantage .advantage :nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375vw;
  color: #000000;
  text-align: left;
  font-style: normal;
  margin-bottom: 0.4167vw;
}
.index-page .index1 .g_advantage .advantage :nth-child(3) {
  font-weight: 300;
  font-size: 0.8333vw;
  color: #929292;
  text-align: left;
  font-style: normal;
}
.index-page .index2 .g_mainPoints {
  position: relative;
}
.index-page .index2 .g_mainPoints .mainPoints {
  width: 84.1146vw;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 0.2083vw 0.8333vw 0 rgba(228, 228, 228, 0.5);
  padding: 4.0104vw 22.3958vw 4.0625vw 13.5417vw;
}
.index-page .index2 .g_mainPoints .mainPoints .g_keyPoints {
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-page .index2 .g_mainPoints .mainPoints .g_keyPoints .keyPoints-img {
  width: 7.2917vw;
  height: 7.2917vw;
  background: #d8d8d8;
  border-radius: 50%;
  margin-right: 2.2917vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.index-page .index2 .g_mainPoints .mainPoints .g_keyPoints .keyPoints-img img {
  width: 80%;
  height: 80%;
}
.index-page .index2 .g_mainPoints .mainPoints .g_keyPoints .keyPoints-img .imgItem {
  width: 8.3333vw;
  height: 8.3333vw;
  border-radius: 50%;
}
.index-page .index2 .g_mainPoints .mainPoints .g_keyPoints .keyPoints-text {
  width: 32.5vw;
}
.index-page .index2 .g_mainPoints .mainPoints .g_keyPoints .keyPoints-text :nth-child(1) {
  font-weight: 400;
  font-size: 0.8333vw;
  color: #292929;
  text-align: left;
  font-style: normal;
}
.index-page .index2 .g_mainPoints .mainPoints .g_keyPoints .keyPoints-text :nth-child(2) {
  font-weight: 400;
  font-size: 0.8333vw;
  color: #acacac;
  text-align: left;
  font-style: normal;
}
.index-page .index2 .g_mainPoints .mainPoints .g_margin-bottom {
  margin-bottom: 2.6042vw;
}
.index-page .index2 .g_mainPoints .mainPoints-details {
  position: absolute;
  top: -4.6875vw;
  left: 80%;
  transform: translateX(-50%);
  /* 向左移动自身宽度的一半 */
  width: 29.1146vw;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.index-page .index2 .g_mainPoints .mainPoints-details .details-top {
  width: 100%;
  flex: 1;
}
.index-page .index2 .g_mainPoints .mainPoints-details .details-top .details-video {
  width: 100%;
  height: 26.0417vw;
  position: relative;
  overflow: hidden;
}
.index-page .index2 .g_mainPoints .mainPoints-details .details-top .details-video img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s;
  /* 添加这一行 */
}
.index-page .index2 .g_mainPoints .mainPoints-details .details-top .details-video img:hover {
  transform: scale(1.1);
}
.index-page .index2 .g_mainPoints .mainPoints-details .details-top .details-video .details-title {
  flex: none;
  position: absolute;
  top: 2.0833vw;
  left: 50%;
  /* 定位到 mainPoints 的右边 */
  transform: translateX(-50%);
  /* 向左移动自身宽度的一半 */
  font-weight: 400;
  font-size: 0.9375vw;
  color: #ffffff;
  text-align: left;
}
.index-page .index2 .g_mainPoints .mainPoints-details .details-bottom {
  width: 100%;
  margin-top: auto;
  background: #234fdd;
  padding: 1.6667vw 1.0417vw 0.9896vw 1.6146vw;
}
.index-page .index2 .g_mainPoints .mainPoints-details .details-bottom .detail-item-1 {
  font-weight: 500;
  font-size: 1.5625vw;
  color: #ffffff;
  text-align: left;
  margin-bottom: 1.3542vw;
}
.index-page .index2 .g_mainPoints .mainPoints-details .details-bottom .detail-item-2 {
  font-weight: 500;
  font-size: 1.0417vw;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  margin-bottom: 1.25vw;
}
.index-page .index2 .g_mainPoints .mainPoints-details .details-bottom .detail-item-3 {
  padding: 0.7292vw 1.7188vw;
  background: #ffffff;
  border-radius: 1.7188vw;
  border: 0.0521vw solid #ffffff;
  font-weight: 500;
  font-size: 0.9375vw;
  color: #234fdd;
  text-align: left;
  font-style: normal;
}
.index-page .index3 {
  display: flex;
  width: 100%;
  position: relative;
  flex-direction: column;
}
.index-page .index3 .g_backgroundImage {
  width: 20.8333vw;
  height: 24.8958vw;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/static/img/backgroundImage.png);
  background-size: 100% 100%;
}
.index-page .index3 .g_boxALL {
  width: 100%;
  position: relative;
}
.index-page .index3 .g_fieldBox {
  content: '';
  position: absolute;
  top: 90%;
  left: 12.5vw;
  box-sizing: border-box;
  transform: translateY(-50%);
  width: calc(100% - 12.5vw);
  height: 18.3333vw;
  background-color: #234fdd;
  border-radius: 1.7708vw;
  overflow: visible;
  z-index: 1;
}
.index-page .index3 .g_field {
  overflow: hidden;
  margin-left: 17.9167vw;
  margin-right: 1.0417vw;
  box-sizing: border-box;
  position: relative;
}
.index-page .index3 .g_field img.swiper-slide {
  width: 18.9885vw;
  height: 27.6042vw;
  display: block;
  z-index: 2;
  margin-left: 4.6875vw;
}
.index-page .index3 .g_field img.swiper-slide img {
  width: 100%;
}
.index-page .index4 {
  overflow: hidden;
  width: 100%;
  margin-top: 9.1667vw;
}
.index-page .index4 .g_intelligentPlatform {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.index-page .index4 .g_intelligentPlatform .g_exhibitionOfWorks {
  width: 100%;
  max-height: 37.0833vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5.3125vw;
  z-index: 2;
}
.index-page .index4 .g_intelligentPlatform .g_exhibitionOfWorks img {
  display: block;
  width: 55.3125vw;
  z-index: 2;
  object-fit: cover;
}
.index-page .index4 .g_intelligentPlatform .g_introductionToWorks {
  position: relative;
  margin: 2.2917vw 0 6.7708vw 0;
  width: 58.0208vw;
  padding: 2.8125vw 4.6875vw;
  box-sizing: border-box;
  background: #234fdd;
  border-radius: 0 1.4063vw 1.4063vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375vw;
  color: #ffffff;
  line-height: 3.3333vw;
  text-align: left;
  font-style: normal;
}
.index-page .index4 .g_intelligentPlatform .g_introductionToWorks::after {
  content: '';
  position: absolute;
  top: 2.1875vw;
  left: 5.8333vw;
  width: 53.5938vw;
  height: 100%;
  background: #234fdd;
  border-radius: 0 1.4063vw 1.4063vw 0;
  opacity: 0.15;
}
.index-page .index4 .g_intelligentPlatform .g_backgroundImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/static/img/mapBackground.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.index-page .index5 .g_contactUs {
  width: 100%;
  box-sizing: border-box;
  padding: 0 18.2292vw 2.0833vw 18.2292vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-page .index5 .g_contactUs .g_contactUsItem {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.index-page .index5 .g_contactUs .g_contactUsItem .itemIcon {
  font-size: 3.8542vw;
  color: #234fdd;
  margin-bottom: 0.9375vw;
}
.index-page .index5 .g_contactUs .g_contactUsItem .itemTitle {
  font-weight: 500;
  font-size: 0.9375vw;
  color: #224fde;
  text-align: left;
  font-style: normal;
  margin-bottom: 1.5625vw;
}
.index-page .index5 .g_contactUs .g_contactUsItem .itemContent {
  width: 15.625vw;
  text-align: center;
  font-weight: 500;
  font-size: 0.8333vw;
  color: #676565;
  font-style: normal;
}
.index-page .index5 .g_map {
  width: 100%;
  margin-bottom: 4.1667vw;
  padding: 0 18.2292vw 0 18.2292vw;
}
.index-page .index5 .g_map #container {
  width: 100%;
  height: 23.9583vw;
}
.index-page .index6 {
  margin-bottom: 5.2083vw;
}
.index-page .index6 .g_collectInformation {
  padding: 0 17.7083vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.index-page .index6 .g_collectInformation .collectInformation {
  background: #ffffff;
  width: 48%;
  border: 0.0521vw solid #d9e5ff;
  padding-left: 1.0417vw;
  box-sizing: border-box;
  margin-bottom: 0.5208vw;
}
.index-page .index6 .g_collectInformation .collectInformation label {
  font-weight: 400;
  font-size: 1.0417vw;
  color: #dee5ff;
}
.index-page .index6 .g_collectInformation .collectInformation input {
  box-shadow: 0 0.2083vw 0.8333vw 0 rgba(233, 233, 233, 0.5);
  width: 85%;
  height: 100%;
  background: #ffffff;
  box-sizing: border-box;
  font-size: 1.0417vw;
  padding: 2.6042vw 0;
  border: none !important;
  background: none !important;
}
.index-page .index6 .g_collectInformation .collectInformation textarea {
  border: none !important;
}
.index-page .index6 .g_collectInformation .collectInformation .requItem {
  color: #ff0e0e;
}
.index-page .index6 .g_collectInformation button {
  width: 48%;
  padding: 2.6042vw 1.3542vw;
  font-weight: 400;
  font-size: 1.5625vw;
  color: #ffffff;
  line-height: 1.4583vw;
  background: #234fdd;
  box-shadow: 0 0.2083vw 0.8333vw 0 rgba(233, 233, 233, 0.5);
  border-radius: 0.5208vw;
  border: none;
}
.product-page {
  background-color: #f8fbff;
}
.product-page .g_currency {
  margin: 6.7708vw 0 3.6458vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.product-page .g_currency .g_generalTitle {
  font-weight: 600;
  font-size: 1.5625vw;
  color: #000000;
  text-align: left;
  font-style: normal;
  margin-bottom: 0.8854vw;
}
.product-page .g_currency .g_generalSecondaryTitle {
  font-weight: 400;
  font-size: 0.8333vw;
  color: #234fdd;
  text-align: left;
  font-style: normal;
}
.product-page .product .banner {
  width: 100%;
}
.product-page .product .banner img {
  width: 100%;
  height: 100vh;
}
.product-page .g_btnDetail {
  display: inline-block;
  padding: 0.8333vw 2.0313vw;
  background: rgba(35, 79, 221, 0.06);
  border-radius: 0.625vw;
  border: 0.1042vw solid #234fdd;
  font-weight: 500;
  font-size: 1.3542vw;
  color: #234fdd;
  text-align: left;
  font-style: normal;
}
.product-page .product1 {
  text-align: right;
}
.product-page .product1 .g_controlCabinet {
  display: flex;
  align-items: center;
  width: 100%;
}
.product-page .product1 .g_controlCabinet .controlCabinetImg {
  display: block;
  width: 60%;
}
.product-page .product1 .g_controlCabinet .controlCabinetText {
  width: 35%;
  padding: 4.1667vw 3.125vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #234fdd;
  font-weight: 400;
  font-size: 0.9375vw;
  color: #ffffff;
  line-height: 2.6563vw;
  text-align: left;
  font-style: normal;
}
.product-page .product1 .g_controlCabinet .controlCabinetBox {
  flex: 1;
  height: 6.9792vw;
  background: #234fdd;
  opacity: 0.13;
}
.product-page .product1 .conMagin {
  margin: 6.7708vw 17.7083vw 6.7708vw 0;
  text-align: right;
  box-sizing: border-box;
}
.product-page .product1 .g_boxInformation {
  padding-left: 18.75vw;
  padding-right: 36.4583vw;
  box-sizing: border-box;
  position: relative;
}
.product-page .product1 .g_boxInformation .g_boxInformationList {
  box-sizing: border-box;
  width: 100%;
  min-height: 46.7292vw;
}
.product-page .product1 .g_boxInformation .g_boxInformationList li {
  display: flex;
  align-items: center;
  margin-bottom: 5.2083vw;
}
.product-page .product1 .g_boxInformation .g_boxInformationList li .num {
  width: 2.8646vw;
  height: 2.8646vw;
  background: #234fdd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1.0417vw;
  color: #ffffff;
  text-align: left;
  font-style: normal;
  margin-right: 1.0417vw;
}
.product-page .product1 .g_boxInformation .g_boxInformationList li .text {
  font-weight: 500;
  font-size: 1.25vw;
  color: #2c2d30;
  text-align: left;
  font-style: normal;
  line-height: 1.7188vw;
}
.product-page .product1 .g_boxInformation .g_boxInformationRight {
  position: absolute;
  right: 0;
  top: -6.0417vw;
  width: 50vw;
  height: 52.8333vw;
  min-height: 52.8333vw;
  background: url(/static/img/ellipse.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.product-page .product1 .g_boxInformation .g_boxInformationRight img {
  width: 35.4167vw;
  height: 36.7188vw;
}
.product-page .product2 {
  position: relative;
  text-align: right;
}
.product-page .product2 .g_cable {
  width: 81.1979vw;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, #e9eeff 100%);
  border-radius: 3.125vw 0 0 3.125vw;
  padding: 3.2813vw 2.6042vw 0 0;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
}
.product-page .product2 .g_cable .g_cableContent {
  display: flex;
  width: 100%;
}
.product-page .product2 .g_cable .cableImg {
  left: 0;
  top: 0;
  width: 25.25vw;
  object-fit: cover;
  display: inline-block;
  margin-left: 2.6042vw;
  margin-bottom: 1.5625vw;
  margin-right: 3.6458vw;
  z-index: 99;
}
.product-page .product2 .g_cable .protector {
  margin-bottom: 3.8021vw;
  flex: 1;
}
.product-page .product2 .g_cable .protector .protectorBtnBox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-page .product2 .g_cable .protector .protectorBtn {
  display: inline-block;
  padding: 0.8333vw 2.0313vw;
  background: rgba(35, 79, 221, 0.06);
  border-radius: 0.625vw;
  border: 0.1042vw solid #234fdd;
  font-weight: 500;
  font-size: 1.3542vw;
  color: #234fdd;
  text-align: left;
  font-style: normal;
}
.product-page .product2 .cableBg {
  position: absolute;
  left: 0;
  top: 0;
  width: 28.6979vw;
  height: 100%;
}
.product-page .product3 {
  position: relative;
}
.product-page .product3 .g_protector {
  width: 81.1979vw;
  padding: 3.8542vw 0 3.8542vw 18.75vw;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, #e9eeff 100%);
  border-radius: 3.125vw 0 0 3.125vw;
  box-sizing: border-box;
}
.product-page .product3 .g_protector .g_protectorContent {
  position: relative;
  margin-left: 4.6875vw;
}
.product-page .product3 .g_protector .g_protectorContent .g_notCovered {
  position: absolute;
  display: block;
  width: 42.4479vw;
  max-height: 23.8021vw;
  z-index: 99;
  left: 50%;
  top: 45%;
  transform: translate(-13%, -50%);
}
.product-page .product3 .g_protector .g_protectorBtn {
  display: inline-block;
}
.product-page .product3 .g_protectorImg {
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  z-index: 9;
  width: 35.7292vw;
}
.product-page .product4 .g_moreProduct {
  width: 100%;
  height: 34.6354vw;
  padding: 3.6458vw 18.75vw 0;
  background: url(/static/img/protectorBackgroundImage.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-page .product4 .g_moreProduct .swiper .slideWid {
  width: 20.4688vw !important;
}
.product-page .product4 .g_moreProduct .swiper .swiper-slide {
  font-size: 0.9375vw;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2.0833vw 3.125vw;
  background-color: #f8fbff;
  height: 18.2292vw;
}
.product-page .product4 .g_moreProduct .swiper .slide-top {
  width: 100%;
  height: 10.4167vw;
  display: block;
  object-fit: cover;
}
.product-page .product4 .g_moreProduct .swiper .slide-top:hover {
  transform: scale(1.1);
  transition: all 0.5s;
}
.product-page .product4 .g_moreProduct .swiper .slide-bottom {
  padding: 1.0417vw 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.product-page .product4 .g_moreProduct .swiper .slide-bottom .mainTitle {
  font-weight: 500;
  font-size: 0.8333vw;
  color: #234fdd;
  text-align: left;
  font-style: normal;
  margin-bottom: 0.2083vw;
}
.product-page .product4 .g_moreProduct .swiper .slide-bottom .textTip {
  font-weight: 400;
  font-size: 0.7292vw;
  color: #929292;
  text-align: center;
  font-style: normal;
}
.product-page .product3 .protectorTitle,
.product-page .product2 .protectorTitle {
  font-weight: 500;
  font-size: 1.5625vw;
  color: #234fdd;
  text-align: left;
  font-style: normal;
  margin-bottom: 0.625vw;
  overflow: hidden;
}
.product-page .product3 .protectorList,
.product-page .product2 .protectorList {
  list-style-type: none;
  margin-bottom: 3.6458vw;
}
.product-page .product3 .protectorList li,
.product-page .product2 .protectorList li {
  margin-top: 2.8125vw;
  line-height: 1.3021vw;
  display: flex;
  align-items: center;
}
.product-page .product3 .protectorList li .iconSty,
.product-page .product2 .protectorList li .iconSty {
  font-size: 0.9375vw;
  color: #234fdd;
  font-weight: bold;
  margin-right: 1.5625vw;
}
.product-page .product3 .protectorList li :nth-child(2),
.product-page .product2 .protectorList li :nth-child(2) {
  font-weight: 500;
  font-size: 0.9375vw;
  color: #2c2d30;
  text-align: left;
  font-style: normal;
}
.product-detail {
  background: #f8fbff;
}
.product-detail .detail_index {
  width: 100%;
  margin-top: 10.4167vw;
  padding: 0 18.75vw;
}
.product-detail .detail_index .g_generalContent1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail .detail_index .g_generalContent1 .g_detailsLeft {
  width: 31.4583vw;
  height: 27.8125vw;
  background: url(/static//img/productDetail1.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
}
.product-detail .detail_index .g_generalContent1 .g_detailsLeft img {
  width: 20.3125vw;
  height: 22.2917vw;
  display: inline-block;
  margin-left: 2.4479vw;
}
.product-detail .detail_index .g_generalContent1 .g_detailsRight {
  flex: 1;
  margin-left: 3.3854vw;
}
.product-detail .detail_index .g_generalContent1 .g_detailsRight .g_generalTitle {
  font-weight: 600;
  font-size: 1.5625vw;
  color: #000000;
  text-align: left;
  font-style: normal;
  margin-bottom: 0.5208vw;
}
.product-detail .detail_index .g_generalContent1 .g_detailsRight .g_generalSecondaryTitle {
  font-weight: 400;
  font-size: 0.7292vw;
  color: #234fdd;
  line-height: 1.0417vw;
  text-align: left;
  font-style: normal;
  margin-bottom: 0.5208vw;
}
.product-detail .detail_index .g_generalContent1 .g_detailsRight .g_generalSecondaryTitle .g_modelNum {
  color: #929292;
}
.product-detail .detail_index .g_generalContent1 .g_detailsRight .g_generalText {
  font-weight: 500;
  font-size: 0.8333vw;
  color: #2c2d30;
  line-height: 2.8646vw;
  text-align: left;
  font-style: normal;
}
.product-detail .detail_index .g_detailImg {
  margin: 2.6042vw 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail .detail_index .g_detailImg .g_detailImgItem {
  width: 18.6458vw;
  background: #ffffff;
  box-shadow: 0 0.2083vw 0.8333vw 0 #ededed;
  border-radius: 1.0417vw;
  padding: 2.5vw 3.8542vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail .detail_index .g_detailImg .g_detailImgItem img {
  width: 10.9896vw;
  height: 11.3542vw;
}
.product-detail .detail_index .g_detailImg .g_detailImgItem:hover {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, #e9eeff 100%);
}
.product-detail .detail_index1 .g_technicalInformation {
  padding: 3.6458vw 18.75vw;
  box-sizing: border-box;
  height: 100%;
  background: url(/static/img/technicalInformationBg.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.product-detail .detail_index1 .g_technicalInformation img {
  width: 40%;
  max-height: 46.875vw;
}
.product-detail {
  opacity: 0;
  transition: opacity 0.1s;
}
.product-detail.loaded {
  opacity: 1;
}
.intelligentPlatformPage {
  background: #f8fbff;
}
.intelligentPlatformPage .intelligentPlatformPage0 {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(/static/img/intelligentPlatform-banner.png) no-repeat;
  background-size: 100% 100%;
}
.intelligentPlatformPage .intelligentPlatformPage0 .intellIndexContent {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  margin-left: 18.8542vw;
}
.intelligentPlatformPage .intelligentPlatformPage0 .intellIndexContent div {
  font-style: normal;
  text-align: left;
}
.intelligentPlatformPage .intelligentPlatformPage0 .intellIndexContent .intellIndexContentItem {
  font-size: 1.1458vw;
  color: #234fdd;
  line-height: 1.5625vw;
  font-weight: 500;
}
.intelligentPlatformPage .intelligentPlatformPage0 .intellIndexContent .intellIndexContentText {
  font-weight: 600;
  font-size: 1.3542vw;
  color: #000000;
  line-height: 1.9271vw;
  text-align: left;
  font-style: normal;
}
.intelligentPlatformPage .intelligentPlatformPage1 .g_performance {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1458vw 18.75vw;
  background: url(/static/img/intelligentPlatformBg1.png);
  background-size: 100% 100%;
}
.intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem {
  width: 30%;
  height: 100%;
  background: #e3ecff;
  box-shadow: 0 0.2083vw 0.8333vw 0 rgba(35, 79, 221, 0.35);
  border-radius: 1.0417vw;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: background 0.5s ease, box-shadow 0.5s ease;
  /* 添加过渡效果 */
}
.intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem .performanceItemTitle {
  font-weight: 600;
  font-size: 0.9375vw;
  color: #1d1e1f;
  text-align: left;
  font-style: normal;
  display: flex;
  align-items: center;
  padding: 2.5521vw 5.1563vw 0 2.1875vw;
  transition: color 0.5s ease;
  /* 添加过渡效果 */
}
.intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem .performanceItemTitle .performanceItemBox {
  display: inline-block;
  width: 0.2604vw;
  height: 0.8333vw;
  background: #004fff;
  border-radius: 0.0521vw;
  margin-right: 0.5208vw;
  transition: background 0.5s ease;
  /* 添加过渡效果 */
}
.intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem .performanceItemText {
  font-weight: 400;
  font-size: 0.7292vw;
  color: #7b7b7b;
  line-height: 1.0417vw;
  text-align: left;
  font-style: normal;
  padding: 1.0417vw 5.1563vw 1.1979vw 2.1875vw;
  transition: color 0.5s ease;
  /* 添加过渡效果 */
}
.intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem .performanceItemImg {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem .performanceItemImg img {
  width: 16.875vw;
  height: 16.9271vw;
  transition: transform 0.5s ease;
  /* 添加过渡效果 */
}
.intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem:hover {
  background: #5e90ff;
  box-shadow: 0 0.2083vw 1.25vw 0 rgba(35, 79, 221, 0.5);
  /* 加强阴影效果 */
}
.intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem:hover .performanceItemTitle {
  color: #f5f5f5;
}
.intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem:hover .performanceItemTitle .performanceItemBox {
  background: #ffffff;
}
.intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem:hover .performanceItemText {
  color: #f5f5f5;
}
.intelligentPlatformPage .intelligentPlatformPage2 {
  margin-bottom: 11.7708vw;
}
.intelligentPlatformPage .intelligentPlatformPage2 .g_controlCenter {
  width: 100%;
}
.intelligentPlatformPage .intelligentPlatformPage2 .g_controlCenter .controlCenterItem {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 15.625vw;
  position: relative;
}
.intelligentPlatformPage .intelligentPlatformPage2 .g_controlCenter .controlCenterItem .controlCenterContent {
  position: relative;
  padding: 0 2.6563vw;
  width: 64.5833vw;
  background: #f7f9ff;
  box-shadow: 0 0.2083vw 0.8333vw 0 rgba(224, 224, 224, 0.5);
  border-radius: 0.5208vw;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
  z-index: 99;
}
.intelligentPlatformPage .intelligentPlatformPage2 .g_controlCenter .controlCenterItem .controlCenterContent .controlCenterContentRight {
  text-indent: 2em;
  padding: 5vw 0;
  width: 24.2188vw;
  font-weight: 400;
  font-size: 0.7292vw;
  color: #000000;
  line-height: 1.7708vw;
  text-align: left;
  font-style: normal;
}
.intelligentPlatformPage .intelligentPlatformPage2 .g_controlCenter .controlCenterItem .controlCenterContent .controlCenterContentImg {
  width: 33.5417vw;
  position: absolute;
  top: -5.2083vw;
  left: 2.1875vw;
}
.intelligentPlatformPage .intelligentPlatformPage2 .g_controlCenter .controlCenterItem .controlCenterImg {
  position: absolute;
  width: 100%;
  height: 23.2292vw;
  top: -10vw;
  background: url(/static/img/intelligentPlatformBg2.png) no-repeat;
  background-size: 100% 100%;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization {
  width: 100%;
  height: 35.0521vw;
  background: url(/static/img/intelligentPlatformBg3.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  padding-right: 9.1146vw;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft {
  margin: 12.5vw 2.9688vw 12.5vw 18.75vw;
  width: 18.75vw;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .iconList {
  display: flex;
  align-items: center;
  margin-bottom: 2.5vw;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .iconList .iconItem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.3333vw;
  height: 3.3333vw;
  margin-right: 1.7708vw;
  background: #ffffff;
  border-radius: 50%;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .iconList .iconItem span {
  font-size: 2.0833vw;
  color: #234fdd;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .iconList .iconItem:hover {
  background-color: #234fdd;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .iconList .iconItem:hover span {
  color: #f8fbff;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .iconList .iconItem.active {
  background-color: #234fdd;
  /* 使用 @main-color 的值 */
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .iconList .iconItem.active span {
  color: #ffffff;
  /* 使用 @main_bg 的值 */
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .content .title {
  font-weight: 600;
  font-size: 1.5625vw;
  color: #000000;
  text-align: left;
  font-style: normal;
  margin-bottom: 1.0417vw;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .content .text {
  font-weight: 400;
  font-size: 0.9375vw;
  color: #878787;
  line-height: 1.3021vw;
  text-align: left;
  font-style: normal;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgRight {
  flex: 1;
  height: 100%;
  background: url(/static/img/circle.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgRight .swiper {
  width: 33.8542vw;
  height: 25.8854vw;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgRight .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9375vw;
  font-size: 1.1458vw;
  font-weight: bold;
  color: #fff;
  background-color: #f8fbff;
}
.intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgRight .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-page {
  background: #f8fbff;
}
.solution-page .solution {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 3.125vw;
}
.solution-page .solution .solutionImg {
  overflow: hidden;
  width: 40.4479vw;
}
.solution-page .solution .solutionImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.solution-page .solution .solutionImg img:hover {
  transform: scale(1.1);
}
.solution-page .solution:nth-of-type(2n + 1) .solutionImg {
  border-radius: 0 0 7.9167vw 0;
  margin-right: 5.0521vw;
}
.solution-page .solution:nth-of-type(2n + 1) .solutionText .solutionTextDiv {
  right: -0.3125vw;
  bottom: -0.7292vw;
}
.solution-page .solution:nth-of-type(2n + 1) .solutionText .solutionTextDiv1 {
  right: -0.9896vw;
  bottom: -1.1458vw;
}
.solution-page .solution:nth-of-type(2n) {
  justify-content: end;
}
.solution-page .solution:nth-of-type(2n) .solutionImg {
  border-radius: 0 0 0 7.9167vw;
  margin-left: 5.0521vw;
}
.solution-page .solution:nth-of-type(2n) .solutionText {
  order: -1;
}
.solution-page .solution:nth-of-type(2n) .solutionText .solutionTextDiv {
  left: -0.3125vw;
  bottom: -0.7292vw;
}
.solution-page .solution:nth-of-type(2n) .solutionText .solutionTextDiv1 {
  left: 0.5729vw;
  bottom: -1.1458vw;
}
.solution-page .solution .solutionText {
  width: 50%;
  box-sizing: border-box;
  padding: 1.5625vw 1.5625vw 5.2083vw 1.5625vw;
  background: #ffffff;
  box-shadow: 0 0.2083vw 0.8333vw 0 rgba(50, 93, 221, 0.05);
  border-radius: 0.5208vw;
  position: relative;
  font-weight: 600;
  font-size: 1.3542vw;
  color: #325ddd;
}
.solution-page .solution .solutionText .title {
  font-size: 1.3542vw;
  color: #325ddd;
  margin-bottom: 1.9271vw;
  text-indent: 0;
  display: flex;
  align-items: center;
}
.solution-page .solution .solutionText .desc {
  font-weight: 400;
  font-size: 0.7292vw;
  text-indent: 2 !important;
  color: #565656;
}
.solution-page .solution .solutionText .iconSty {
  display: inline-block;
  color: #9cb5ff;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
  margin-left: 5.0417vw;
  /* 确保它在非悬停状态下也占据空间 */
}
.solution-page .solution .solutionText .solutionTextDiv {
  position: absolute;
  width: 3.0208vw;
  height: 3.125vw;
  background: #e1e8ff;
}
.solution-page .solution .solutionText .solutionTextDiv1 {
  position: absolute;
  width: 2.7604vw;
  height: 2.8125vw;
  background: #9cb5ff;
}
.solution-page .solution .solutionText:hover .iconSty {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.solution-details-page {
  background: #f8fbff;
}
.solution-details-page .solution_details {
  width: 100%;
  height: 100vh;
}
.solution-details-page .solution_details img {
  width: 100%;
  height: 100%;
}
.solution-details-page .solution_details1 {
  width: 100%;
  text-align: right;
}
.solution-details-page .solution_details1 .summary {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  background: url(/static/img/solutionDetails2.png) no-repeat;
  background-size: 100% 31.9271vw;
}
.solution-details-page .solution_details1 .summary .summaryItem {
  width: 81.1979vw;
  background: linear-gradient(90deg, #ffffff 0%, #e9eeff 100%);
  border-radius: 3.125vw 0 0 3.125vw;
  display: flex;
}
.solution-details-page .solution_details1 .summary .summaryItem .summaryItemLeft {
  width: 23.8438vw;
  height: 100%;
  object-fit: cover;
  margin-right: 5.2083vw;
  position: relative;
}
.solution-details-page .solution_details1 .summary .summaryItem .summaryItemLeft .summaryItemImg {
  position: absolute;
  width: 100%;
  top: 3.4896vw;
  left: 2.9688vw;
}
.solution-details-page .solution_details1 .summary .summaryItem .summaryItemRight {
  flex: 1;
  padding: 13.6458vw 16.4583vw 8.2292vw 0;
  font-weight: 400;
  font-size: 0.9375vw;
  color: #656565;
  line-height: 2.0313vw;
  text-align: left;
  font-style: normal;
  text-indent: 2rem;
}
.solution-details-page .solution_details2 .g_projectHighlights {
  position: relative;
}
.solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent {
  width: 16.7708vw;
  margin-left: 18.75vw;
  min-height: 41.6667vw;
}
.solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent .projectHighlightsContentTitle {
  font-weight: 600;
  font-size: 0.9375vw;
  line-height: 2.0313vw;
  color: #234fdd;
}
.solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent .projectHighlightsContentContent {
  font-size: 0.7292vw;
  color: #717171;
  font-weight: 400;
  line-height: 2.0313vw;
}
.solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContentImg {
  width: 20.4167vw;
  height: 26.7708vw;
  background: #f7f9ff;
  border-radius: 0.5208vw;
  margin-bottom: 1.5625vw;
  box-shadow: 0px 4px 16px 0px rgba(224, 224, 224, 0.5);
  display: flex;
  align-items: center;
}
.solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContentImg img {
  width: 100%;
  max-height: 100%;
}
.solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent1 {
  position: absolute;
  top: 0.7292vw;
  left: 41.9271vw;
}
.solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent2 {
  position: absolute;
  top: 7.4479vw;
  left: 66.6667vw;
}
.solution-details-page .solution_details2 .g_projectHighlights1 {
  width: 100%;
  margin-bottom: 18.6458vw;
  margin-top: 4.5833vw;
}
.solution-details-page {
  opacity: 0;
  transition: opacity 0.05s;
}
.solution-details-page.loaded {
  opacity: 1;
}
.about-page {
  background: #f8fbff;
}
.about-page .about-banner {
  width: 100%;
  height: 100vh;
  background: url(/static/img/aboutBanner.png) no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.about-page .about-banner .intellIndexContent {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  margin-left: 18.8542vw;
}
.about-page .about-banner .intellIndexContent div {
  font-style: normal;
  text-align: left;
}
.about-page .about-banner .intellIndexContent .intellIndexContentItem {
  font-size: 1.1458vw;
  color: #234fdd;
  line-height: 1.5625vw;
  font-weight: 500;
}
.about-page .about-banner .intellIndexContent .intellIndexContentText {
  font-weight: 600;
  font-size: 1.3542vw;
  color: #000000;
  line-height: 1.9271vw;
  text-align: left;
  font-style: normal;
}
.about-page .about1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-page .about1 .g_companyIntroduction {
  margin-top: 10.75vw;
  position: relative;
}
.about-page .about1 .g_companyIntroduction .companyIntroduction {
  position: absolute;
  width: 60.3125vw;
  background: rgba(245, 245, 245, 0.6);
  left: 50%;
  top: -12.8125vw;
  transform: translate(-50%, 0);
  padding: 3.5417vw 9.4167vw 4.6875vw;
  z-index: 99;
}
.about-page .about1 .g_companyIntroduction .companyIntroduction .companyIntroductionTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.0625vw;
}
.about-page .about1 .g_companyIntroduction .companyIntroduction .companyIntroductionTop .companyIntroductionTopItem {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-page .about1 .g_companyIntroduction .companyIntroduction .companyIntroductionTop .companyIntroductionTopItem .iconSty {
  font-size: 2.2917vw;
  color: #234fdd;
}
.about-page .about1 .g_companyIntroduction .companyIntroduction .companyIntroductionTop .companyIntroductionTopItem .title {
  margin-top: 0.4688vw;
  font-weight: 600;
  font-size: 1.1458vw;
  color: #234fdd;
  line-height: 1.5625vw;
  text-align: left;
  font-style: normal;
}
.about-page .about1 .g_companyIntroduction .companyIntroduction .companyIntroductionBottom {
  font-weight: 600;
  font-size: 0.8333vw;
  color: #242424;
  line-height: 1.1458vw;
  text-align: center;
}
.about-page .about1 .g_companyIntroduction #videoContainer {
  position: relative;
  width: 100%;
  height: 28.5938vw;
  margin: 0 auto;
}
.about-page .about1 .g_companyIntroduction #videoContainer #companyVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.about-page .about1 .g_companyIntroduction #videoContainer .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 半透明黑色遮罩层 */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.about-page .about1 .g_companyIntroduction #videoContainer .overlay .playButton {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  /* 白色背景，半透明 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #333;
  transition: background-color 0.3s, transform 0.3s;
}
.about-page .about1 .g_companyIntroduction #videoContainer .overlay .playButton:hover {
  background-color: rgba(255, 255, 255, 0.95);
  /* 鼠标悬停时更亮 */
}
.about-page .about1 .g_companyIntroduction #videoContainer .overlay .playButton:hover::before {
  transform: scale(1.1);
  /* 鼠标悬停时放大 */
}
.about-page .about1 .g_companyIntroduction #videoContainer .overlay .playButton::before {
  content: '\25B6';
  /* Unicode 播放符号 */
  font-size: inherit;
  transform: scale(1);
  transition: transform 0.3s;
}
.about-page .about1 .g_companyIntroduction #videoContainer .closeButton {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  z-index: 99;
  /* 关闭按钮位于遮罩层之上 */
}
.about-page .about2 .g_certificate {
  width: 100%;
  margin-bottom: 6.25vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .about2 .g_certificate .certificate {
  width: 29.6875vw;
  position: relative;
  z-index: 99;
}
.about-page .about2 .g_certificate .certificate .certificate1 {
  width: 29.6875vw;
  height: 35.9375vw;
}
.about-page .about2 .g_certificate .certificate .certificate2,
.about-page .about2 .g_certificate .certificate .certificate3 {
  position: absolute;
  display: flex;
  width: 19.7917vw;
  height: 28.0208vw;
  top: 50%;
  transform: translate(0, -50%);
  z-index: -3;
}
.about-page .about2 .g_certificate .certificate .certificate2 {
  left: -17.1875vw;
}
.about-page .about2 .g_certificate .certificate .certificate3 {
  right: -17.1875vw;
}
.about-page .about3 {
  width: 100%;
  min-height: 31.25vw;
  height: auto;
  background: url(/static/img/aboutBg.png) no-repeat;
  background-size: 100% 100%;
  padding: 13.5938vw 18.8542vw 6.0417vw;
  display: flex;
}
.about-page .about3 .g_partnersLeft {
  width: 24.375vw;
  margin-right: 5.625vw;
}
.about-page .about3 .g_partnersLeft .partnersLeftTop {
  display: flex;
  justify-content: center;
  width: 100%;
  font-weight: 600;
  font-size: 1.5625vw;
  color: #ffffff;
  line-height: 2.1875vw;
  text-align: left;
  font-style: normal;
}
.about-page .about3 .g_partnersLeft .partnersLeftMiddle {
  margin: 1.7708vw 0;
  width: 100%;
  height: 0.0521vw;
  border: 0.0521vw solid #ffffff;
}
.about-page .about3 .g_partnersLeft .partnersLeftBottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-page .about3 .g_partnersLeft .partnersLeftBottom span {
  display: inline-block;
  width: 30%;
  font-weight: 400;
  font-size: 0.9375vw;
  color: #ffffff;
  line-height: 1.3021vw;
  margin-bottom: 2.5vw;
}
.about-page .about3 .g_partnersRight {
  display: flex;
  justify-content: space-between;
  flex: 1;
  flex-wrap: wrap;
}
.about-page .about3 .g_partnersRight img {
  width: 7.3958vw;
  height: 7.3958vw;
  border-radius: 50%;
  display: inline-block;
  margin-right: 3.125vw;
  margin-bottom: 2.1354vw;
}
.news-pages {
  background: #f8fbff;
  padding: 7.2917vw 16.6667vw 0;
}
.news-pages .newsAndInformationImg {
  width: 21.875vw;
  display: block;
  margin-top: 5.2083vw;
  margin-bottom: 4.1667vw;
}
.news-pages .g_newsAndInformation .newsAndInformationList {
  width: 100%;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 1.0417vw 2.6042vw;
  background: #ffffff;
  box-shadow: 0px 4px 16px 0px rgba(221, 221, 221, 0.5);
  border-radius: 20px;
  margin-bottom: 2.0833vw;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemLeft {
  width: 9.7083vw;
  height: 8.625vw;
  background-color: #000000;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemLeft img {
  width: 100%;
  height: 100%;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight:hover .iconSty {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightTitle {
  font-weight: 600;
  font-size: 1.0417vw;
  color: #000000;
  line-height: 1.4583vw;
  text-align: left;
  font-style: normal;
  display: flex;
  align-items: center;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .iconSty {
  margin-left: 5.2083vw;
  display: inline-block;
  color: #9cb5ff;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightline {
  width: 10.3125vw;
  height: 0.0521vw;
  border: 0.0521vw solid #e0e8ff;
  margin: 0.5208vw 0;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightContent {
  font-weight: 400;
  font-size: 0.8333vw;
  color: #7b7b7b;
  line-height: 1.1458vw;
  text-align: left;
  font-style: normal;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightContent p {
  text-indent: 2em;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightbottom {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin: 0.6042vw 0;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightbottom .detail {
  display: inline-block;
  padding: 0.5729vw 1.6667vw !important;
  font-size: 0.9375vw;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightbottom .time {
  font-weight: 400;
  font-size: 0.8333vw;
  color: #262525;
  line-height: 1.1458vw;
  text-align: left;
  font-style: normal;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightbottom .timeBottom {
  order: -1;
}
.news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .newsAndInformationRight {
  order: -1;
}
.news-pages .g_newsAndInformation .informationImg {
  margin-right: 2.8646vw;
}
.news-pages .g_newsAndInformation .industryImg {
  margin-left: 2.8646vw;
}
.news-pages .g_newsAndInformation .g_industryInformation {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.news-pages .g_newsAndInformation .g_industryInformation .newsAndInformationImg {
  margin-top: 0;
}
.newsDetail-page {
  background: #f8fbff;
  padding: 7.2917vw 17.7083vw 15.625vw;
}
.newsDetail-page .g-newsContent .news_headlines {
  width: 100%;
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 1.5625vw;
  color: #171717;
  line-height: 2.1875vw;
  text-align: left;
  font-style: normal;
  margin-top: 12.8125vw;
}
.newsDetail-page .g-newsContent .newsSubtitle {
  width: 100%;
  text-align: right;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 0.9375vw;
  color: #262525;
  line-height: 1.3021vw;
  font-style: normal;
  margin: 2.6042vw 0;
}
.newsDetail-page .g-newsContent .newsContent {
  width: 100%;
  background: #ffffff;
  padding: 4.3229vw 6.1979vw;
  box-shadow: 0 0.2083vw 0.8333vw 0 rgba(221, 221, 221, 0.5);
}
.newsDetail-page .g-newsContent .newsContent img {
  width: 53.8542vw;
  margin-bottom: 3.1771vw;
}
.newsDetail-page .g-newsContent .newsContent p {
  font-weight: 400;
  font-size: 0.9375vw;
  color: #101010;
  line-height: 1.3021vw;
  text-align: left;
  text-indent: 2em;
  font-style: normal;
  margin-bottom: 1.0417vw;
}
@media (max-width: 768px) {
  #header .header-box {
    height: 50px;
  }
  #header .header-box .header-left .language {
    font-size: 14px;
  }
  #header .header-box .header-right {
    width: 100%;
    transition: all ease 0.5s;
    display: block;
    height: calc(100vh - 50px);
    background: #000;
    position: fixed;
    left: 0;
    top: 50px;
    transform: translate3d(-100%, 0, 0);
  }
  #header .header-box .phone-menu {
    width: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  #header .header-box .phone-menu span {
    transition: all ease 0.5s;
    background: #fff;
    width: 100%;
    height: 2px;
  }
  #header .header-box .phone-menu span:nth-of-type(1) {
    transform: translate3d(0, -3px, 0) rotate(0);
  }
  #header .header-box .phone-menu span:nth-of-type(2) {
    transform: translate3d(0, 3px, 0) rotate(0);
  }
  #header .header-box .active span:nth-of-type(1) {
    transform: translate3d(0, 1px, 0) rotate(45deg);
  }
  #header .header-box .active span:nth-of-type(2) {
    transform: translate3d(0, -1px, 0) rotate(-45deg);
  }
  .productButton {
    font-size: 12px;
  }
  .button {
    padding: 10px 20px;
    font-size: 12px;
  }
  .phone .header-box .header-right {
    transform: translate3d(0, 0, 0) !important;
  }
  .phone .header-box .header-right .menu-box {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .phone .header-box .header-right .menu-box .menu-item {
    width: 100%;
    margin-right: 0 !important;
    text-align: center;
    margin-bottom: 30px;
    padding: 8px 0;
  }
  .phone .header-box .header-right .menu-box .menu-item a {
    font-size: 18px !important;
  }
  .phone .header-box .header-right .menu-box .menu-item a::after {
    display: none !important;
  }
  .phone .header-box .header-right .menu-box .menu-item:last-child {
    margin-bottom: 0;
  }
  .phone .header-box .header-right .menu-box .menu-item .down {
    margin-top: 15px;
    position: relative !important;
    left: unset !important;
    top: unset !important;
    background: none !important;
    width: 100% !important;
    transform: unset !important;
  }
  .phone .header-box .header-right .menu-box .menu-item .down::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 0;
    transform: translate3d(-50%, 0, 0);
    width: 50%;
    height: 1px;
    background: #fff;
  }
  .phone .header-box .header-right .menu-box .menu-item .down .down-item {
    padding: 8px !important;
    border-bottom: none !important;
  }
  .phone .header-box .header-right .menu-box .menu-item .down .down-item a {
    color: #fff !important;
    font-size: 14px !important;
  }
  #top .top-box {
    right: 10px;
    bottom: 20%;
  }
  #footer .footer-box .footer-top {
    flex-wrap: wrap;
  }
  #footer .footer-box .footer-top .f-left {
    width: 100%;
  }
  #footer .footer-box .footer-top .f-left .f-contant .contant-item {
    font-size: 12px;
    line-height: normal;
  }
  #footer .footer-box .footer-top .f-left .f-ewm {
    margin-top: 10px;
  }
  #footer .footer-box .footer-top .f-left .f-ewm img {
    width: 40px;
  }
  #footer .footer-box .footer-top .f-left .f-ewm div {
    font-size: 12px;
    line-height: normal;
  }
  #footer .footer-box .footer-top .f-left .f-logo .f-logo-img {
    width: 40px;
  }
  #footer .footer-box .footer-top .f-left .f-logo .f-logo-text {
    width: 80px;
  }
  #footer .footer-box .footer-top .f-right {
    width: 100%;
    padding-bottom: 20px;
  }
  #footer .footer-box .footer-top .f-right .f-right-item a {
    font-size: 12px;
  }
  #footer .footer-box .footer-bottom {
    font-size: 12px;
    line-height: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #footer .footer-box .footer-bottom span {
    display: block;
    margin: 0;
  }
  .g_generalContent .gFirstLevelTitle {
    font-size: 14px;
  }
  .g_generalContent .gSecondaryTitle {
    font-size: 10px;
    font-weight: 100;
  }
  .index-page {
    padding-top: 50px;
  }
  .index-page .index .banner img {
    width: 100%;
    height: 100%;
  }
  .index-page .index .banner-text :nth-child(1) {
    font-size: 10px;
    font-weight: 100;
  }
  .index-page .index .banner-text :nth-child(2) {
    font-size: 14px;
  }
  .index-page .index .banner-text :nth-child(3) {
    padding: 15px;
    font-size: 12px;
    line-height: normal;
    width: 150px;
  }
  .index-page .index .banner-text :nth-child(3) span {
    font-size: 12px;
  }
  .index-page .index1 .g_advantage {
    width: 100%;
    flex-wrap: wrap;
  }
  .index-page .index1 .g_advantage .advantage {
    width: 50%;
    margin-top: 10px;
  }
  .index-page .index1 .g_advantage .advantage :nth-child(1) {
    width: 35px;
    height: 35px;
  }
  .index-page .index1 .g_advantage .advantage :nth-child(1) span {
    font-size: 30px;
  }
  .index-page .index1 .g_advantage .advantage :nth-child(1):hover {
    width: 35px;
    height: 35px;
  }
  .index-page .index1 .g_advantage .advantage :nth-child(2) {
    font-size: 14px;
  }
  .index-page .index1 .g_advantage .advantage :nth-child(3) {
    font-size: 12px;
    text-align: center;
  }
  .index-page .index2 .g_mainPoints {
    position: relative;
  }
  .index-page .index2 .g_mainPoints .mainPoints {
    padding: 20px;
    width: 100%;
  }
  .index-page .index2 .g_mainPoints .mainPoints .g_keyPoints {
    width: 100% !important;
  }
  .index-page .index2 .g_mainPoints .mainPoints .g_keyPoints .keyPoints-img {
    width: 50px;
    height: 50px;
  }
  .index-page .index2 .g_mainPoints .mainPoints .g_keyPoints .keyPoints-img img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50%;
  }
  .index-page .index2 .g_mainPoints .mainPoints .g_keyPoints .keyPoints-text {
    font-size: 12px;
    flex: 1;
  }
  .index-page .index2 .g_mainPoints .mainPoints .g_keyPoints .keyPoints-text p {
    font-size: 12px !important;
    line-height: normal;
  }
  .index-page .index2 .g_mainPoints .mainPoints-details {
    position: relative;
    top: 20px;
    left: 80px;
    width: 80%;
    transform: translate(0, 0);
    height: 100%;
  }
  .index-page .index2 .g_mainPoints .mainPoints-details .details-top .details-video {
    height: 300px;
  }
  .index-page .index2 .g_mainPoints .mainPoints-details .details-top .details-video .details-title {
    font-size: 12px;
  }
  .index-page .index2 .g_mainPoints .mainPoints-details .details-bottom {
    width: 100%;
    padding-bottom: 20px;
  }
  .index-page .index2 .g_mainPoints .mainPoints-details .details-bottom .detail-item-1 {
    font-size: 16px;
  }
  .index-page .index2 .g_mainPoints .mainPoints-details .details-bottom .detail-item-2 {
    font-size: 12px;
  }
  .index-page .index2 .g_mainPoints .mainPoints-details .details-bottom .detail-item-3 {
    font-size: 10px;
    padding: 8px;
  }
  .index-page .index4 .g_introductionToWorks {
    font-size: 14px !important;
    line-height: normal !important;
  }
  .index-page .index5 .g_contactUs {
    display: none;
    width: 100%;
    padding: 0 52px;
    flex-wrap: wrap;
  }
  .index-page .index5 .g_contactUs .g_contactUsItem {
    margin-top: 10px;
    width: 44%;
  }
  .index-page .index5 .g_contactUs .g_contactUsItem span {
    font-size: 30px !important;
  }
  .index-page .index5 .g_contactUs .g_contactUsItem .itemTitle {
    font-size: 14px !important;
  }
  .index-page .index5 .g_contactUs .g_contactUsItem .itemContent {
    font-size: 12px !important;
    text-align: center;
    margin-bottom: 10px;
  }
  .index-page .index5 .g_map {
    width: 100%;
    padding: 0 20px;
  }
  .index-page .index5 .g_map #container {
    width: 100%;
    height: 200px;
  }
  .index-page .index6 .g_collectInformation .collectInformation {
    width: 100%;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .index-page .index6 .g_collectInformation .collectInformation label {
    font-size: 12px;
  }
  .index-page .index6 .g_collectInformation .collectInformation input {
    font-size: 12px;
    width: 70%;
  }
  .index-page .index6 .g_collectInformation button {
    width: 100%;
    margin: 20px 0;
    font-size: 12px;
  }
  .product-page {
    margin-top: 50px;
  }
  .product-page .g_currency .g_generalTitle {
    font-size: 14px;
  }
  .product-page .g_currency .g_generalSecondaryTitle {
    font-size: 10px;
    font-weight: 100;
  }
  .product-page .product .banner img {
    width: 100%;
    height: 100%;
  }
  .product-page .product1 .g_controlCabinet {
    flex-wrap: wrap;
  }
  .product-page .product1 .g_controlCabinet .controlCabinetImg {
    width: 100%;
  }
  .product-page .product1 .g_controlCabinet .controlCabinetText {
    width: 100%;
    font-size: 14px;
    line-height: normal;
    text-indent: 2em;
    font-weight: 100;
  }
  .product-page .product1 .g_controlCabinet .controlCabinetBox {
    display: none;
  }
  .product-page .product1 .g_btnDetail {
    padding: 10px 12px;
    font-size: 12px;
  }
  .product-page .product1 .g_boxInformation {
    flex-wrap: wrap;
    padding-right: 0;
    position: relative;
  }
  .product-page .product1 .g_boxInformation .g_boxInformationRight {
    position: relative;
    right: 0 !important;
    width: 100% !important;
    height: 300px;
  }
  .product-page .product1 .g_boxInformation .g_boxInformationRight img {
    width: 200px;
  }
  .product-page .product1 .g_boxInformation .g_boxInformationList {
    width: 100%;
  }
  .product-page .product1 .g_boxInformation .g_boxInformationList .num {
    width: 20px !important;
    height: 20px !important;
    font-size: 10px !important;
  }
  .product-page .product1 .g_boxInformation .g_boxInformationList .text {
    flex: 1;
    font-size: 12px !important;
    line-height: normal !important;
  }
  .product-page .product2 .g_cable .g_cableContent {
    flex-wrap: wrap !important;
  }
  .product-page .product2 .g_cable .g_cableContent .cableImg {
    width: 100% !important;
  }
  .product-page .product2 .g_cable .g_cableContent .protector {
    width: 100% !important;
  }
  .product-page .product2 .g_cable .g_cableContent .protector .protectorTitle {
    font-size: 14px !important;
  }
  .product-page .product2 .g_cable .g_cableContent .protector .protectorList li .iconSty {
    font-size: 14px;
  }
  .product-page .product2 .g_cable .g_cableContent .protector .protectorList li :nth-child(2) {
    font-size: 14px;
    line-height: normal;
  }
  .product-page .product2 .g_cable .g_cableContent .protector .protectorBtnBox .btn {
    font-size: 12px;
    padding: 8px 12px;
  }
  .product-page .product3 .g_protector .protectorTitle {
    font-size: 14px !important;
  }
  .product-page .product3 .g_protector .protectorList {
    width: 100%;
    margin-bottom: 20px;
  }
  .product-page .product3 .g_protector .protectorList li .iconSty {
    font-size: 14px;
  }
  .product-page .product3 .g_protector .protectorList li :nth-child(2) {
    font-size: 14px;
    line-height: normal;
  }
  .product-page .product3 .g_protector .g_notCovered {
    position: relative !important;
    top: 60% !important;
    transform: none !important;
    width: 200px !important;
  }
  .product-page .product3 .g_protector .g_protectorBtn {
    padding: 10px 15px;
    font-size: 12px;
  }
  .product-page .product4 .g_moreProduct {
    padding-left: 20px;
    padding-right: 20px;
    height: 270px;
  }
  .product-page .product4 .g_moreProduct .swiper .swiper-wrapper .swiper-slide {
    height: 200px;
  }
  .product-page .product4 .g_moreProduct .swiper .swiper-wrapper .swiper-slide .slide-top {
    height: 100px;
  }
  .product-page .product4 .g_moreProduct .swiper .swiper-wrapper .swiper-slide .slide-bottom .mainTitle {
    font-size: 10px;
  }
  .product-page .product4 .g_moreProduct .swiper .swiper-wrapper .swiper-slide .slide-bottom .textTip {
    font-size: 10px;
  }
  .product-page .product4 .g_moreProduct .swiper .swiper-button-prev ::after,
  .product-page .product4 .g_moreProduct .swiper .swiper-button-nextswiper-button-next ::after {
    font-size: 16px !important;
  }
  .product-detail .detail_index .g_generalContent1 {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .product-detail .detail_index .g_generalContent1 .g_detailsLeft {
    height: 150px;
    background-size: 130px 140px;
  }
  .product-detail .detail_index .g_generalContent1 .g_detailsRight {
    width: 100%;
  }
  .product-detail .detail_index .g_generalContent1 .g_detailsRight .g_generalTitle {
    font-size: 14px;
  }
  .product-detail .detail_index .g_generalContent1 .g_detailsRight .g_generalSecondaryTitle .g_model {
    font-size: 12px;
    line-height: normal;
  }
  .product-detail .detail_index .g_generalContent1 .g_detailsRight .g_generalSecondaryTitle .g_modelNum {
    font-size: 12px;
    line-height: normal;
  }
  .product-detail .detail_index .g_generalContent1 .g_detailsRight .g_generalText {
    font-size: 12px;
    line-height: normal;
    text-indent: 2em;
  }
  .product-detail .detail_index1 .g_technicalInformation {
    flex-wrap: wrap;
  }
  .product-detail .detail_index1 .g_technicalInformation img {
    width: 100%;
    max-height: 200px;
  }
  .intelligentPlatformPage {
    margin-top: 50px;
  }
  .intelligentPlatformPage .intelligentPlatformPage0 {
    width: 100%;
    height: 182px !important;
    background: url(/static/img/intelligentPlatform-banner.png) no-repeat;
    background-size: 100% 100%;
  }
  .intelligentPlatformPage .intelligentPlatformPage0 .intellIndexContent .intellIndexContentItem {
    font-size: 14px;
    line-height: normal;
  }
  .intelligentPlatformPage .intelligentPlatformPage0 .intellIndexContent .intellIndexContentText {
    font-size: 14px;
    line-height: normal;
  }
  .intelligentPlatformPage .intelligentPlatformPage1 .g_performance {
    flex-wrap: wrap;
    background: none;
  }
  .intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem {
    width: 100%;
    margin-bottom: 10px;
  }
  .intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem .performanceItemTitle {
    font-size: 14px;
  }
  .intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem .performanceItemTitle .performanceItemBox {
    width: 4px;
    height: 15px;
  }
  .intelligentPlatformPage .intelligentPlatformPage1 .g_performance .performanceItem .performanceItemText {
    font-size: 12px;
    line-height: normal;
  }
  .intelligentPlatformPage .intelligentPlatformPage2 .g_controlCenter {
    width: 100%;
    height: auto;
  }
  .intelligentPlatformPage .intelligentPlatformPage2 .g_controlCenter .controlCenterItem .controlCenterImg {
    display: none;
  }
  .intelligentPlatformPage .intelligentPlatformPage2 .g_controlCenter .controlCenterItem .controlCenterContent {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .intelligentPlatformPage .intelligentPlatformPage2 .g_controlCenter .controlCenterItem .controlCenterContent .controlCenterContentImg {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    width: 300px;
  }
  .intelligentPlatformPage .intelligentPlatformPage2 .g_controlCenter .controlCenterItem .controlCenterContent .controlCenterContentRight {
    width: 100%;
    font-size: 12px;
    line-height: normal;
    margin: 0 20px;
    font-weight: 400;
  }
  .intelligentPlatformPage .intelligentPlatformPage3 .g_customization {
    background: none;
    flex-wrap: wrap;
    height: auto;
    padding: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, #e9eeff 100%);
    margin: 0;
    box-sizing: border-box !important;
  }
  .intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft {
    width: 100%;
    padding: 20px 0;
    justify-content: center;
    margin: 0;
  }
  .intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .iconList {
    justify-content: center;
  }
  .intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .iconList .iconItem {
    margin: 0 20px;
    width: 40px;
    height: 40px;
  }
  .intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .iconList .iconItem span {
    font-size: 30px;
  }
  .intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .content {
    width: 100%;
    padding: 0 40px;
    text-align: center;
    box-sizing: border-box;
  }
  .intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .content .title {
    font-size: 12px;
  }
  .intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgLeft .content .text {
    font-size: 12px;
    line-height: normal;
  }
  .intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgRight {
    width: 100%;
    background: none;
    padding: 20px 0;
  }
  .intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgRight .swiper {
    width: 300px;
    height: 300px;
  }
  .intelligentPlatformPage .intelligentPlatformPage3 .g_customization .g_customizationImgRight .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
  }
  .about-page {
    margin-top: 50px;
  }
  .about-page .about-banner {
    width: 100%;
    height: 185px;
  }
  .about-page .about-banner .intellIndexContent .intellIndexContentItem {
    font-size: 14px;
    line-height: normal;
  }
  .about-page .about-banner .intellIndexContent .intellIndexContentText {
    font-size: 12px;
    line-height: normal;
  }
  .about-page .about1 .g_generalContent .gSecondaryTitle {
    display: none;
  }
  .about-page .about1 .g_companyIntroduction {
    justify-content: center;
    width: 80% !important;
    display: flex;
    flex-wrap: wrap;
  }
  .about-page .about1 .g_companyIntroduction .companyIntroduction {
    width: 100%;
    position: relative;
  }
  .about-page .about1 .g_companyIntroduction .companyIntroduction .companyIntroductionTop .companyIntroductionTopItem .iconSty {
    font-size: 25px;
  }
  .about-page .about1 .g_companyIntroduction .companyIntroduction .companyIntroductionTop .companyIntroductionTopItem .title {
    font-size: 10px;
  }
  .about-page .about1 .g_companyIntroduction .companyIntroduction .companyIntroductionBottom {
    font-size: 10px;
    line-height: normal;
  }
  .about-page .about1 .g_companyIntroduction #videoContainer .overlay .playButton {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .about-page .about3 {
    flex-wrap: wrap;
    padding: 30px;
  }
  .about-page .about3 .g_partnersLeft {
    width: 100%;
  }
  .about-page .about3 .g_partnersLeft .partnersLeftTop {
    font-size: 14px;
  }
  .about-page .about3 .g_partnersLeft .partnersLeftMiddle {
    margin: 20px 0;
  }
  .about-page .about3 .g_partnersLeft .partnersLeftBottom span {
    width: 30%;
    font-size: 14px;
    line-height: 20px;
  }
  .about-page .about3 .g_partnersRight {
    width: 100%;
    margin-top: 30px;
  }
  .about-page .about3 .g_partnersRight img {
    width: 80px;
    height: 80px;
  }
  .solution-page .solution {
    flex-wrap: wrap;
  }
  .solution-page .solution .solutionImg {
    width: 100%;
    order: 0 !important;
  }
  .solution-page .solution .solutionImg img {
    width: 100%;
  }
  .solution-page .solution .solutionText {
    width: 80% !important;
    margin-top: 20px;
    order: 1 !important;
    width: 200px;
    font-size: 14px;
  }
  .solution-page .solution .solutionText .title {
    font-size: 14px;
  }
  .solution-page .solution .solutionText .desc {
    font-size: 10px;
  }
  .solution:last-child {
    margin-bottom: 20px;
  }
  .solution-details-page .solution_details {
    width: 100%;
    height: 100%;
  }
  .solution-details-page .solution_details img {
    width: 100%;
    height: 100%;
  }
  .solution-details-page .solution_details1 .summary {
    justify-content: center;
    background: none;
  }
  .solution-details-page .solution_details1 .summary .summaryItem {
    flex-wrap: wrap;
    background: none;
  }
  .solution-details-page .solution_details1 .summary .summaryItem .summaryItemLeft {
    width: 100%;
    height: auto;
  }
  .solution-details-page .solution_details1 .summary .summaryItem .summaryItemLeft .summaryItemImg {
    position: relative;
    width: 300px;
    top: 0;
    left: 0;
  }
  .solution-details-page .solution_details1 .summary .summaryItem .summaryItemRight {
    margin-top: 10px;
    width: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #e9eeff 100%);
    padding: 20px 10px;
    font-size: 12px;
    line-height: normal !important;
    text-indent: 2em;
  }
  .solution-details-page .solution_details2 .g_projectHighlights1 {
    display: none;
  }
  .solution-details-page .solution_details2 .g_projectHighlights {
    flex-wrap: wrap;
    margin: 0 40px !important;
  }
  .solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent {
    background: linear-gradient(90deg, #ffffff 0%, #e9eeff 100%);
    padding: 20px 10px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }
  .solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent .projectHighlightsContentTitle {
    font-size: 14px;
    line-height: normal;
  }
  .solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent .projectHighlightsContentContent {
    font-size: 12px;
    line-height: normal;
    text-indent: 2em;
  }
  .solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent1,
  .solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent2 {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    top: 0;
    left: 0;
  }
  .solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent1 .projectHighlightsContentImg,
  .solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent2 .projectHighlightsContentImg {
    width: 300px;
    height: 100%;
    max-height: 400px;
  }
  .solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent1 .projectHighlightsContentImg img,
  .solution-details-page .solution_details2 .g_projectHighlights .projectHighlightsContent2 .projectHighlightsContentImg img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
  }
  .news-pages {
    height: 100%;
    margin-top: 50px;
  }
  .news-pages .g_newsAndInformation .newsAndInformationList .InformationItem {
    flex-wrap: wrap;
  }
  .news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemLeft {
    width: 100%;
    height: auto;
  }
  .news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemLeft img {
    width: 100%;
    height: auto;
    max-height: 200px;
  }
  .news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight {
    margin-top: 30px;
    width: 100%;
  }
  .news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightTitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightline {
    display: none;
  }
  .news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightContent {
    font-size: 14px;
    line-height: normal;
    display: none;
  }
  .news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightbottom .detail {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
  }
  .news-pages .g_newsAndInformation .newsAndInformationList .InformationItem .InformationItemRight .InformationItemRightbottom .time {
    font-size: 12px;
  }
  .newsDetail-page {
    margin-top: 50px;
    padding: 50px 20px;
  }
  .newsDetail-page .g-newsContent .news_headlines {
    font-size: 14px;
    line-height: normal;
    text-align: center;
  }
  .newsDetail-page .g-newsContent .newsSubtitle {
    font-size: 10px;
    line-height: normal;
    font-weight: 100;
  }
  .newsDetail-page .g-newsContent .newsContent img {
    width: 100%;
  }
  .newsDetail-page .g-newsContent .newsContent div p {
    font-size: 14px;
    line-height: normal;
  }
}
