﻿/* ====移动端导航==== */
/* 按钮 */
.mobmenu {
  display: none;
  margin-left: 10px;
}
.mobmenu dl {
  transform: rotateY(180deg);
  width: 30px;
  margin-right: 10px;
  cursor: pointer;
}
.mobmenu dl dd {
  width: 0;
  height: 2px;
  background: #fff;
}
.mobmenu dl dd:first-child {
  animation: sjnav 2.4s linear infinite;
}
.mobmenu dl dd:nth-child(2) {
  margin: 6px 0;
  width: 20px;
}
.mobmenu dl dd:last-child {
  animation: sjnav 2.4s linear infinite;
  animation-delay: 0.4s;
}
/* 导航头 */
.mobmenu h4 {
  color: #fff;
}
.mobmask {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
  background: rgba(7, 16, 26, 0.8);
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.2s;
}
.mobmask.active {
  opacity: 1;
  visibility: visible;
}
.mobnavBox {
  padding-bottom: 20px;
  width: 60%;
  height: 100vh;
  position: fixed;
  z-index: 100;
  top: 0;
  left: -50%;
  overflow-y: auto;
  opacity: 0;
  transition: all 0.3s;
  background: #fff;
  visibility: hidden;
}
.mobnavBox.active {
  transition-delay: 0.3s;
  opacity: 1;
  left: 0;
  visibility: visible;
}
.mobCon {
  padding: 0 20px;
}
.mobnavBox .top {
  padding: 10px 20px;
  height: 55px;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);
}
.mobnavBox .top .logo {
  max-width: 150px;
  height: 100%;
  display: flex;
  align-items: center;
}
.mobnavBox .top .logo img {
  max-width: 100%;
  max-height: 100%;
}
.mobnavBox .top .mobnavclose {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}
.mobnavBox .top .mobnavclose:before,
.mobnavBox .top .mobnavclose:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 1px;
}
.mobnavBox .top .mobnavclose:before {
  width: 20px;
  height: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.mobnavBox .top .mobnavclose:after {
  width: 2px;
  height: 20px;
  transform: translate(-50%, -50%) rotate(225deg);
}
/* 导航搜索 */
.mobsearch {
  margin-top: 30px;
}
.mobsearch form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobsearch form input {
  width: calc(100% - 52px);
  line-height: 40px;
  border: 1px solid #eee;
  border-radius: 2px;
  padding: 0 12px;
  font-size: var(--font14);
  color: #333;
}
.mobsearch form button {
  width: 42px;
  height: 42px;
  background: #0515f7;
  color: #333;
  border-radius: 2px;
  font-size: 14px;
  border: 0;
  cursor: pointer;
}
.mobsearch form button img {
  filter: brightness(100);
  -webkit-filter: brightness(100);
}
/* 导航内容 */
.mobnavBox .bottom {
  padding: 6px 0;
}
.mobnavBox .bottom .nav li {
  margin: 0.3rem 0;
}
.mobnavBox .bottom .nav li h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobnavBox .bottom .nav li h3 a {
  display: block;
  text-align: center;
  color: #333;
  padding-left: 4px;
  font-size: var(--font18);
}
.mobnavBox .bottom .nav li h3 i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #333;
  text-align: center;
  font-size: 12px;
  transition: 0.4s;
  cursor: pointer;
}
.mobnavBox .bottom .nav li h3 i svg {
  max-width: 100%;
}
.mobnavBox .bottom .nav li .m-subnav {
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 5px;
  display: none;
}
.mobnavBox .bottom .nav li .m-subnav a {
  display: block;
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
  font-size: var(--font16);
  color: #333;
}
.mobnavBox .bottom .nav li .m-subnav a:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 5px;
  transition: all 0.4s;
}
.mobnavBox .bottom .nav li .m-subnav a:after {
  content: '';
  width: 4px;
  height: 4px;
  background: #cccccc;
  border-radius: 50%;
  position: absolute;
  left: 7px;
  top: 8px;
  transition: all 0.4s;
}
.mobnavBox .bottom .nav li.on h3 a {
  color: #0515f7;
}
.mobnavBox .bottom .nav li.on h3 i {
  transform: rotate(90deg);
  color: #0515f7;
}
.mobnavBox .bottom .nav li.on h3 i:before,
.mobnavBox .bottom .nav li.on h3 i:after {
  background: #fff;
}
.mobnavBox .bottom .nav li h3 a:hover,
.mobnavBox .bottom .nav li .m-subnav a:hover,
.mobnavBox .bottom .nav li .m-subnav a.on {
  color: #0515f7;
}
.mobnavBox .bottom .nav li .m-subnav a:hover:before,
.mobnavBox .bottom .nav li .m-subnav a.on:before {
  border-color: #0515f7;
}
.mobnavBox .bottom .nav li .m-subnav a:hover:after,
.mobnavBox .bottom .nav li .m-subnav a.on:after {
  background: #0515f7;
}

/* 导航联系方式 */
.moblan a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 44px;
}
.sitebtn {
  display: block;
  border-radius: 4px;
  background-image: linear-gradient(135deg, #0515f7 0%, #f37a0a 50%, #0515f7 100%);
  overflow: hidden;
  background-size: 200% auto;
  color: #fff;
  text-align: center;
}
.sitebtn:hover {
  background-position: right center;
}
.mobinfo {
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.mobinfo h2 {
  color: #0515f7;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.mobinfo dl dd {
  display: flex;
  margin-top: 0.15rem;
  align-items: center;
}
.mobinfo dl dd {
}
.mobinfo dl dd .icBox {
  max-width: 15px;
  max-height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.mobinfo dl dd .icBox img {
  max-width: 100%;
}
.mobinfo dl dd p {
  width: calc(100% - 14px);
  color: #333;
}
.mobinfo dl dd p a {
  color: #333;
}
.mobinfo dl dd p a:hover {
  color: #0515f7;
}

@keyframes sjnav {
  0% {
    width: 0;
  }
  25% {
    width: 15px;
  }
  50% {
    width: 30px;
  }
  75% {
    width: 15px;
  }
  100% {
    width: 0;
  }
}

@media screen and (min-width: 200px) and (max-width: 1900px) {
}

/* ======================================================1800px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1800px) {
}

/* ======================================================1700px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1700px) {
}

/* ======================================================1580px========================================================= */
@media screen and (min-width: 1300px) and (max-width: 1580px) {
  .procenOne {
    margin-top: -10%;
  }
  .indexTwo .box .le {
    width: 30%;
  }
  .indexTwo .re {
    width: 68%;
  }
}
@media screen and (min-width: 200px) and (max-width: 1299px) {
  /* 头部 */
  .headerBox {
    min-height: 80px;
  }
  .headernav > ul > li {
    line-height: 80px;
  }
  #c-placeholder {
    height: 80px;
  }
  .headProCenNav .container {
    padding-left: 10%;
  }
  .headProCenNav .re dt {
    font-size: var(--font16);
  }
  .headProCenNav .re dd a {
    font-size: var(--font14);
  }

  /* 底部 */
  .foternav dl dd a {
    font-size: var(--font16);
  }
  .indexFour ul li .con .text {
    font-size: var(--font16);
  }

  /* 首页 */
  .indexTle span {
    font-size: var(--font18);
  }
  .indexTwo {
    padding: 2rem 0 3rem 0;
  }
  .indexTwo ul li span {
    font-size: var(--font18);
  }
  .indexTwo .box .le {
    width: 30%;
  }
  .indexTwo .re {
    width: 68%;
  }
  .indexTwo .text p {
    font-size: var(--font20);
  }
  .inThSwiper ul {
    grid-template-rows: 2.5rem 0.4rem 0.8rem 2.5rem;
  }

  /* 关于我们 */
  .nyNavColumn {
    top: 0;
  }
  .abTwoSwiper1 .box .imgBox img {
    height: 5rem;
  }

  /* 全球招聘 */
  .about4-one .text {
    width: 65%;
  }
  .about4-two {
    padding: 2.6rem 0;
  }
  .about4-Three ul li .ico_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .about4-Three ul li .ico_box img {
    max-width: 70%;
    max-height: 100%;
    object-fit: contain;
  }
}

/* ======================================================1500px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1500px) {
}
/* ======================================================1450px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1450px) {
}

/* ======================================================1400px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1400px) {
  /* 底部 */
  .foternavus {
    flex-wrap: wrap;
    width: 70%;
  }
  .foternav {
    width: 100%;
  }
  .foterus {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
  }
  .foterus .item {
    margin-top: 0.3rem;
    margin-right: 0.2rem;
  }
  .foterus .item:nth-child(2) {
    margin-top: 0.3rem;
  }
}

/* ======================================================1350px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1350px) {
}

/* ======================================================1300px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1300px) {
  /* 首页 */
  .inThSwiper ul li {
    max-height: 4rem;
  }
}

/* ======================================================1250px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1280px) {
  /* 首页 */
  .indexThree .container {
    max-width: 92%;
  }
  .inThSwiper {
    max-width: 96%;
  }
  .inThSwiper ul {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: initial;
    grid-auto-flow: dense;
  }
  .inThSwiper ul li {
    grid-row-start: initial !important;
    grid-row-end: initial !important;
  }
}

/* ======================================================1200px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1200px) {
  /* 头部 */
  .header-top,
  .header-logo,
  .header-nav {
    display: none;
  }
  .header {
    display: block;
  }
  .mobmenu {
    display: flex;
    margin-left: 20px;
  }
  .indexSearch .container,
  .indexSearch .indexSearchText {
    flex-wrap: wrap;
  }
  .indexSearch .indexSearchText {
    margin-top: 0.1rem;
    padding-bottom: 0.1rem;
  }
  .indexTwo .re ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .indexTwo .re ul li .imgBox {
    
  }
  .indexGG .container {
    flex-wrap: wrap;
    padding: 0.4rem 0;
  }
  .indexGG .container .indexGGRight {
    margin-top: 0.2rem;
  }

  /* 联系我们 */
  .contactMain::after {
    width: 52%;
  }
  .contactMain .box .re {
    width: 45%;
  }
  .contactMain .box .re .col2 input:focus + label {
    top: -0.25rem;
  }
  .contactMain .box .re .col2 input.filled + label {
    top: -0.25rem;
  }
  .contactMain .box .re .col3 select:focus + label {
    top: -0.25rem;
  }
  .contactMain .box .re .col3 select.filled + label {
    top: -0.25rem;
  }

  /* 底部 */
  .foternav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .foternav dl {
    width: 24%;
    margin-top: 0.2rem;
  }

  /* 关于我们 */
  .aboutOne .box {
    flex-wrap: wrap;
  }
  .aboutOne .re {
    width: 55%;
  }

  /* 产品详情*/
  .hiMessagePop {
    width: 60%;
  }
  .prodeOneSwiper .imgBox {
    padding: 0 10%;
  }

  /* 解决方案 */
  .soluonlist li .con {
    font-size: var(--font20);
  }

  /* 新闻中心 */
  .newsOne ul {
    gap: 0.3rem;
  }
  .newsOne li h6 {
    font-size: var(--font18);
  }
}

/* ======================================================1100px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1100px) {
}

/* ======================================================1028px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1028px) {
  /* 首页 */
  .indexSix li {
    margin-right: 1rem;
  }
  .indexSix li:last-child {
    margin-right: 0;
  }

  /* 关于我们 */
  .aboutThree .swiperBox1 {
    width: 70%;
  }
  /* 关于我们-全球招聘 */
  .about4-Three ul {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 产品中心 */
  .procenTwo .listcon ul {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 解决方案 */
  .soluonlist ul {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 案例展示 */
  .caselist ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================================================960px========================================================= */
@media screen and (min-width: 200px) and (max-width: 960px) {
  /* 首页 */
  .indexTwo .box {
    flex-wrap: wrap;
  }
  .indexTwo .box .le {
    width: 100%;
  }
  .indexTwo .box .re {
    width: 100%;
    margin-top: 0.5rem;
  }
  .indexTwo ul {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .indexTwo ul li {
    position: relative;
  }
  .indexFour ul li.on {
    flex: 2;
  }
  .more1 {
    width: 2rem;
    height: 0.6rem;
  }
  /* 新闻详情 */
  .newsxq-box {
    flex-wrap: wrap;
  }
  .news-left {
    width: 100%;
  }
  .newsxq-box .news-right {
    width: 100%;
    margin-top: 0.5rem;
    position: relative;
    top: 0;
  }
  .newsDate .relist .reImg {
    max-width: 3rem;
  }

  /* 联系我们 */
  .contactMain .box {
    flex-wrap: wrap;
  }
  .contactMain .box .re,
  .contactMain .box .le {
    width: 100%;
  }
  .contactMain .box .re {
    margin-top: 1rem;
  }
  .contactMain::after {
    width: 100%;
    height: 45%;
    bottom: 0;
    top: auto;
  }

  /* 底部 */
  .footer .foterBox {
    flex-wrap: wrap;
  }
  .foterLogo {
    width: 100%;
    text-align: center;
    margin: auto;
  }
  .foternavus {
    width: 100%;
    margin-top: 0.5rem;
  }
  .foternav {
    justify-content: space-between;
  }
  .foternavus dl {
    width: auto;
    margin-right: 0.3rem;
  }
  .foternavus dl:last-child {
    margin-right: 0;
  }

  /* 关于我们 */
  .aboutOne .le {
    width: 100%;
  }
  .aboutOne .re {
    width: 100%;
    margin-top: 0.5rem;
  }
  .aboutOne ul li {
    width: 50%;
    padding: 0.3rem;
  }
  .aboutFour .aboutTle {
    position: relative;
  }
  .about2-one {
    padding-top: 0;
  }
  .about2-one .box .le {
    width: 100%;
  }
  .about2-one .imgBox {
    width: 100%;
    margin-top: 1rem;
  }

  .about3-one .box {
    flex-wrap: wrap;
  }
  .about3-one .box .le {
    width: 100%;
  }
  .about3-one .re {
    width: 100%;
  }

  /* 关于我们-全球招聘 */
  .about4-two .text {
    width: 60%;
  }
  .indexThreeBoxItem {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
  .indexThreeBoxItem .imgBox,
  .indexThreeBoxItem .textBox {
    width: 100%;
  }
  .indexThreeBoxItem img {
    width: 100%;
  }
  .indexSevenBox {
    grid-template-columns: repeat(1, 1fr);
  }
  .indexSevenBoxLeftIcon {
    background: #f37a0a;
  }
  .indexFive .le ul {
    flex-wrap: wrap;
  }
}

/* ======================================================手机端========================================================= */
@media screen and (min-width: 200px) and (max-width: 767px) {
  .headerLogo img {
    max-width: 3.5rem;
  }
  .indexFive .le li {
    width: 100%;
  }
  .indexThreeBoxItem {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
  .indexThreeBoxItem .imgBox,
  .indexThreeBoxItem .textBox {
    width: 100%;
  }
  .indexThreeBoxItem img {
    width: 100%;
  }
  .indexFourBox {
    grid-template-columns: repeat(2, 1fr);
  }
  .weblink {
    display: none;
  }
  #c-placeholder {
    height: 60px;
  }
  .headerBox {
    margin: 0;
    min-height: 60px;
  }
  .header .container {
    max-width: 90%;
  }
  .choseLuangage {
    display: none;
  }
  .mobnavBox {
    width: 100%;
  }
  .ssfDismisser {
    width: 20px;
    height: 20px;
  }
  .ssfDismisser svg {
    max-width: 100%;
  }
  .searchFull .ssf-fields-wrap {
    margin: 0;
  }
  .searchFull .ssf-fields-wrap .ssf-input {
    padding-right: 50px;
    height: 40px;
  }
  .searchFull .ssf-fields-wrap .ssf-btn {
    width: 40px;
    height: 40px;
  }

  .indexTwo,
  .indexSix,
  .aboutOne {
    background-position: 50% 0 !important;
    background-attachment: local;
  }

  /* 首页 */
  .indexBanner {
    position: relative;
  }
  .bannerSwiper .swjt {
    display: none;
  }
  .bannerSwiper .swiper-pagination {
    display: block;
  }
  .bannerSwiper .con strong {
    font-size: 0.5rem;
  }
  .bannerSwiper .container .bannerswiper-pagination,
  .indexSearch .indexSearchForm {
    width: 200px;
  }
  .indexSearch .indexSearchForm {
    height: 50px;
    padding-bottom: 10px;
  }
  .indexSearch .indexSearchForm input {
    width: 80%;
  }
  .indexSearch .indexSearchForm button {
    width: 20%;
  }
  .indexTwo {
    padding: 1rem 0;
  }
  .indexTwo .tle img {
    max-width: 1rem;
  }
  .indexTwo .text p {
    font-size: var(--font18);
  }
  .indexThree .swiperBox {
    display: none;
  }
  .indexThree .swiperBox2 {
    display: block;
  }
  .inThSwiper {
    max-width: 88%;
  }
  .inThSwiper ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .inThSwiper ul li span {
    font-size: var(--font14);
  }
  .indexFour ul {
    flex-wrap: wrap;
  }
  .indexFour ul li {
    flex: auto;
    width: 50%;
    height: 5rem;
  }
  .indexFour ul li.on {
    flex: auto;
  }
  .indexFour ul li.on .tle {
    opacity: 1;
  }
  .indexFour ul li .con {
    display: none;
  }
  .indexFive .box {
    flex-wrap: wrap;
  }
  .indexFive .box .le {
    width: 100%;
  }
  .indexFive .re {
    width: 100%;
    margin-top: 0.5rem;
  }
  .indexFive .le li {
    width: 100%;
  }
  .indexSix li .text {
    font-size: var(--font18);
  }

  .foternav {
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .foternav dl .ddbox {
    display: none;
  }
  .foternav dl {
    width: 100%;
    margin-right: 0;
    text-align: left;
  }
  .foternav dl dt {
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
  }
  .foternav dl dt::after {
    content: '';
    background: url(../images/jt1.svg) no-repeat right;
    display: block;
    width: 15px;
    height: 15px;
    background-size: 100%;
    position: absolute;
    right: 0;
    right: 5%;
    top: 0;
    transform-origin: center;
    transition: 0.35s;
  }
  .foternav dl dt.on::after {
    transform: rotate(90deg);
  }
  .foternav dl {
    margin-bottom: 10px;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
  }
  .foternav dl:last-child {
    margin-bottom: 0;
    border: 0;
  }
  .foternav dl.nolist dt::after {
    display: none;
  }
  .foternav dl.nolist dt a {
    display: block;
  }
  .foterus {
    justify-content: flex-start;
  }

  /* ===============================================================================内页=========================================================== */
  /* .mbx {display: none;} */
  /* 内页banner */
  .ny-banner .imgBox img {
    min-height: 5rem;
    object-fit: cover;
  }

  /* 内页导航栏 */
  .nyNavColumn {
    margin-top: 0;
    margin-bottom: 0.5rem;
    border: 0;
    position: relative;
    top: 0;
  }
  .nyNavColumn ul {
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
  }
  .nyNavColumn ul li {
    width: 48%;
    margin-right: 0;
    border: 1px solid #eee;
    width: 48%;
    margin-top: 0.3rem;
  }
  .nyNavColumn li a {
    font-size: var(--font16);
    padding: 0.2rem 0.1rem;
  }

  .rightFixed {
    display: none;
  }

  /* 关于我们 */
  .abTwoSwiper1 .box {
    flex-wrap: wrap;
  }
  .abTwoSwiper1 .box .imgBox {
    width: 100%;
  }
  .abTwoSwiper1 .box .con {
    width: 100%;
  }
  .aboutSix {
    background-attachment: local;
  }
  .abSixSwiper1 .con .text {
    max-height: 120px;
    overflow-y: auto;
    display: block;
  }
  .abSixSwiper1 .box::after {
    height: 100%;
    transition: 0s;
  }
  .abSixSwiper2 .swiper-slide {
    height: 80px;
  }
  .abSixSwiper1 .swiper-slide-active .box::after {
    height: 100%;
  }
  .abSixSwiper1 .swiper-slide-active .con {
    margin-top: 0;
  }
  .abSixSwiper1 .swiper-slide-active .text {
    transform: translateY(0);
  }
  .abSixSwiper2 h6 {
    transform: translateY(0);
    transition: 0s;
  }
  .abSixSwiper2 .swiper-slide-thumb-active h6 {
    transform: translateY(0);
  }
  .abSixSwiper1 .box::after {
    height: 100%;
  }

  .aboutTwo .swiperBox2::after {
    top: 34%;
  }
  .aboutThree .tle {
    flex-wrap: wrap;
  }
  .aboutThree .swiperBox1 {
    width: 100%;
    margin-top: 0rem;
    margin-bottom: 0.5rem;
  }
  .abThreSwiper2 .box {
    flex-wrap: wrap;
  }
  .abThreSwiper2 .box .imgBox {
    width: 100%;
  }
  .abThreSwiper2 .box .con {
    width: 100%;
  }
  .abThreSwiper2 .swjtBox .swjtCon {
    width: 100%;
  }
  /* 关于我们-投资者关系 */
  .about3-one .swiperBox .swjt {
    display: block;
  }
  .swpagnation {
    width: 85%;
  }
  .swControls .swjt {
    width: 30px;
    height: 30px;
  }
  .abSixSwiper2 {
    transform: translateY(-0.6rem);
  }
  .aboutSeven .aboutTle span {
    width: 100%;
  }
  .hon_con_box .swiper-container {
    width: 52%;
  }
  .about3-one ul li {
    width: 100%;
  }
  .about3-Two ul li {
    width: 100%;
  }
  /* 关于我们-全球招聘 */
  .about4-one .text {
    width: 100%;
  }
  .about4-two .bjBox {
    background-position: 50% 0 !important;
    background-attachment: local;
  }
  .about4-two .text {
    width: 100%;
  }
  .about4-Three ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .about4-four ul li .date {
    padding-right: 0;
  }
  .about4-five ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .about4-five ul li .imgBox img {
    min-height: 3rem;
    height: auto;
  }

  /* 产品中心 */
  .procenOne {
    margin-top: 0;
    padding-top: 0.5rem;
  }
  .proOneSwiper {
    max-width: 82%;
  }
  .proOneSwiper .swjt {
    border-color: #333;
  }
  .proOneSwiper .swjt svg path {
    fill: #333;
  }
  .proTwonavSwiper .swiper-wrapper {
    justify-content: flex-start;
  }
  .proTwonav .swiperBox .swjt {
    display: block;
  }
  .proTwonavSwiper {
    max-width: 85%;
  }
  .procenTwo .box {
    flex-wrap: wrap;
  }
  .procenTwo .navlist {
    position: relative;
    top: 0;
    width: 100%;
    border-radius: 0.3rem;
  }
  .procenTwo .listcon {
    width: 100%;
    margin: 0;
    margin-top: 0.5rem;
  }
  .procenTwo .navlist ul {
    margin-right: 0.25rem;
  }
  .procenTwo .listcon ul {
    grid-template-columns: repeat(2, 1fr);
  }
  /* 产品详情*/
  .hiMessagePop {
    width: 90%;
  }
  .hiMessagePop form .item {
    width: 100%;
  }
  .prodateOne .box {
    flex-wrap: wrap;
    padding: 1rem 0;
  }
  .prodateOne .box .le {
    flex: 0 0 100%;
    width: 100%;
  }
  .col-md-8,
  .col-md-4{
    width:100%;
  }
  .prodateOne .swiperBox {
    position: relative;
    margin-top: 1rem;
    flex: 0 0 100%;
    width:100%;
  }
  .prodeOneSwiper {
    width: 100%;
  }
  .prodateTwo table tr {
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
  }
  .prodateTwo table tr td {
    width: 100% !important;
    line-height: 1.5;
    padding: 0.2rem 0;
  }
  .prodateThree ul {
    flex-wrap: wrap;
  }
  .prodateThree ul li {
    width: 100%;
    margin-top: 0.8rem;
  }
  .prodeFourSwiper .box {
    flex-wrap: wrap;
  }
  .prodeFourSwiper .con {
    width: 100%;
    padding: 0.4rem;
    padding-bottom: 0.8rem;
    order: 1;
  }
  .prodeFourSwiper .imgBox {
    width: 100%;
    height: auto;
  }
  .prodeFourSwiper .con::after {
    display: none;
  }
  .prodeFourSwiper .swiper-pagination {
    bottom: 0.2rem;
    padding-left: 0.4rem;
  }

  /* 解决方案 */
  .soluonlist ul {
    grid-template-columns: repeat(1, 1fr);
  }

  /* 解决方案详情 */
  .sodateSenSwiper {
    max-width: 82%;
  }
  .soundateNine .hiMessagePop form .item {
    width: 100%;
  }

  /* 案例展示 */
  .caselist ul {
    grid-template-columns: repeat(1, 1fr);
  }

  /* 新闻中心 */
  .newsOne ul {
    grid-template-columns: repeat(1, 1fr);
  }

  /* 新闻详情 */
  .newsDate .box {
    flex-wrap: wrap;
  }
  .newsDate .box .left {
    width: 100%;
  }
  .newsDate .right {
    width: 100%;
    margin-top: 0.4rem;
    position: relative;
    top: 0;
  }
  .newsDate .right .linksBox {
    width: 100%;
  }
  .newsDate .right .linksBox ul {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 0.3rem;
  }
  .newsInfoSwiper {
    max-width: 82%;
  }

  /* 下载中心 */
  .downOne .list ul {
    width: 100%;
  }
  .downPage {
    width: 100%;
  }

  /* 联系我们 */
  .contactMain {
    padding: 0.8rem 0;
  }
  .contactMain::after {
    height: 48%;
  }
  .contactMain .box .mapNav a {
    width: 2.5rem;
    height: 0.8rem;
    border-radius: 0.41rem;
  }
  .contactMain .box .re .col2 {
    margin-bottom: 0.8rem;
  }
  .contactMain .box .re .col2 input:focus + label {
    top: -0.3rem;
  }
  .contactMain .box .re .col2 input.filled + label {
    top: -0.3rem;
  }
  .contactMain .box .re .col3 select:focus + label {
    top: -0.3rem;
  }
  .contactMain .box .re .col3 select.filled + label {
    top: -0.3rem;
  }
  .contactMain .box .re .subinput {
    display: flex;
    justify-content: center;
  }
}

@media screen and (min-width: 200px) and (max-width: 640px) {
  /* 案例展示 */
  .caselist li .imgBox {
    height: 200px;
  }
}

@media screen and (min-width: 200px) and (max-width: 500px) {
}

@media screen and (min-width: 200px) and (max-width: 450px) {
}

@media screen and (min-width: 200px) and (max-width: 300px) {
}
