.mySwiper {
  /* height: 700px; */
  width: 100%;
  min-width: var(--main-width);
}
.mySwiper .swiper-wrapper{
  height: auto;
}
.mySwiper .swiper-pagination-bullet {
  width: 30px !important;
  height: 2px !important;
  border-radius: 0 !important;
  background: #fefdfd50 !important;
  opacity: 1 !important;
}
.mySwiper .swiper-pagination-bullet-active {
  background: #fff !important;
}
.mySwiper .swiper-slide {
  position: relative;
  background: #000;
}
.mySwiper .swiper-slide video{
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}
.mySwiper .swiper-slide img{
  width: 100%;
  /* height: 100%; */
}
.mySwiper .swiperContent {
  width: var(--main-width);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  height: 300px;
}
.mySwiper .slogan {
  font-size: 50px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
}
.mySwiper .sloganfocus {
  color: #2dafad;
}

.aboutUs {
  height: auto;
}
.aboutUs .aboutUsContentTitle {
  margin: 80px auto 40px;
  text-align: center;
}
.aboutUs .aboutUsContent {
  width: var(--main-width);
  margin: 0 auto;
  position: relative;
}
.aboutUsContentMain {
  display: flex;
  /* padding-top: 160px; */
  position: relative;
}
.aboutUs .title {
  font-size: 22px;
  font-weight: bold;
  color: #2dafad;
  margin-bottom: 10px;
}
.aboutUs .text {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 1px;
  position: relative;
  padding: 10px 20px;
  color: #717171;
}
.aboutUs .text::before {
  content: " ";
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #2dafad;
  margin-right: 10px;
  vertical-align: middle;
  position: absolute;
  top: 22px;
  left: 0px;
}
.aboutUs .aboutUsContentImg {
  width: 300px;
  flex-shrink: 0;
  margin-left: 40px;
  padding: 0 10px;
  box-sizing: border-box;
}
.aboutUs .aboutUsContentImg img {
  width: 100%;
  height: 100%;
}
.aboutUs .aboutUsBg {
  background: url("../img/index/aboutUsBg.png") no-repeat;
  background-size: 100% 100%;
  height: 437px;
  position: relative;
}
.aboutUs .itemRadio {
  height: 145px;
  width: 145px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0px 0px 4px #ccc;
  position: absolute;
}
.aboutUs .itemRadio1 {
  left: 10%;
  top: 15%;
  /* animation: itemRadio1 4s infinite alternate; */
}
.aboutUs .itemRadio2 {
  left: 27%;
  top: 55%;
  /* animation: itemRadio2 4s infinite alternate;  */
}
.aboutUs .itemRadio3 {
  left: 44%;
  top: 8%;
  /* animation: itemRadio3 4s infinite alternate; */
}
.aboutUs .itemRadio4 {
  left: 66%;
  top: 59%;
  /* animation: itemRadio4 4s infinite alternate; */
}
.aboutUs .itemRadio5 {
  left: 81%;
  top: 10%;
  /* animation: itemRadio4 4s infinite alternate; */
}
.point,
.point::before,
.point::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
}

.point::before {
  animation: scale 2s infinite;
}

.point::after {
  animation: scale2 2s infinite;
}

@keyframes scale {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  100% {
    transform: scale(6);
    opacity: 0;
  }
}

@keyframes scale2 {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  100% {
    transform: scale(12);
    opacity: 0;
  }
}

.aboutUs .point,
.point::before,
.point::after {
  /* 设置颜色 */
  background-color: #2dafad90;
}

.aboutUs .point2,
.point2::before,
.point2::after {
  /* 设置颜色 */
  background-color: #2dafad90;
}

.aboutUs .point3,
.point3::before,
.point3::after {
  /* 设置颜色 */
  background-color: #2dafad90;
}

.aboutUs .point4,
.point4::before,
.point4::after {
  /* 设置颜色 */
  background-color: #2dafad90;
}

.aboutUs .itemRadio .name {
  font-size: 20px;
  font-weight: bold;
  color: #2dafad;
  line-height: 20px;
  margin-bottom: 15px;
}
.aboutUs .itemRadio .tip {
  font-size: 12px;
  color: #717171;
  line-height: 18px;
  padding: 0 10px;
  text-align: center;
}
.aboutUs .understand {
  position: absolute;
  left: 20px;
  bottom: -40px;
  width: 100px;
  height: 30px;
  background-color: #2dafad;
  text-align: center;
  line-height: 30px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
  z-index: 2;
}
.aboutUs .understand a{
  color: #fff;
}

.business {
  background-color: #f6f7fb;
  padding-bottom: 40px;
  text-align: center;
}
.business .businessTitle {
  text-align: center;
  padding: 60px 0 40px;
}
.business .businessContent {
  width: var(--main-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.business .businessBox {
  flex: 0 0 calc(25% - 40px); /* 每个项目占据25%的宽度 */
  height: 300px;
  margin: 20px;
  background-color: #fff;
  transition: transform 0.3s ease; /* 动画过渡效果 */
  transform-origin: center; /* 设置变形的中心点 */
  border-radius: 8px;
  display: flex;
  align-items: center;
  flex-direction: column;
  /* justify-content: center; */
  cursor: pointer;
}
.business .businessBox img {
  /* width: 70px; */
  height: 50px;
  margin: 40px 0 20px;
}
.business .businessBox .name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
.business .businessBox .tip {
  font-size: 14px;
  margin-bottom: 10px;
  color: #b2b2b2;
  width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: wrap;
  text-align: center;

  display: -webkit-box; /* 设置为WebKit内核的弹性盒子模型 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  -webkit-line-clamp: 2; /* 限制显示两行 */
  overflow: hidden; /* 隐藏超出范围的内容 */
  text-overflow: ellipsis; /* 使用省略号 */
}
.business .businessBox .understand {
  width: 100px;
  background-color: #2dafad;
  text-align: center;
  line-height: 30px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
  margin-top: 20px;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  height: 0;
  visibility: hidden;
}
.business .businessBox .understand a{
  color: #fff;
}
.business .businessBox:hover .understand {
  opacity: 1;
  height: 30px;
  visibility: visible;
}
.seemore {
  text-align: center;
  font-size: 12px;
  color: #2dafad;
  cursor: pointer;
  margin: 20px auto;
  display: inline-block;
}


.solve {
  height: 630px;
}
.solve .solveContentTitle {
  /* margin: 80px auto 40px; */
  text-align: center;
  position: absolute;
  top: 80px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}
.solve .solveContent {
  /* width: var(--main-width); */
  margin: 0 auto;
  position: relative;
}
.solve .title {
  font-size: 22px;
  font-weight: bold;
  color: #2dafad;
  margin-bottom: 20px;
}
.solve .text {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 1px;
  position: relative;
  /* padding: 10px 20px; */
  color: #fff;
}
.solve .solveContentImg {
  width: 300px;
  flex-shrink: 0;
  margin-left: 40px;
  padding: 0 10px;
  box-sizing: border-box;
}

.solve .understand {
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 100px;
  height: 30px;
  background-color: #2dafad;
  text-align: center;
  line-height: 30px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
}
.solve .understand a{
  color: #fff;
}
.solveSwiper{
  height: 630px;
}
.solveSwiper .swiper-slide img{
  width: 100%;
  height: 100%;
}
.solveSwiper .swiperContent{
  position: relative;
  height: 100%;
}
.solveSwiper .solveContentMain{
  display: flex;
  position: absolute;
  width: var(--main-width);
  left: 50%;
  top: 200px;
  transform: translateX(-50%);
}
.solveSwiper .swiper-pagination-bullet {
  background: #b7b9b6 !important;
  opacity: 1 !important;
  margin: 8px 0 !important;
  height: 10px !important;
  width: 10px !important;
}
.solveSwiper .swiper-pagination-bullet-active {
  background: #fff !important;
}
.solveSwiper .swiper-pagination{
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 3% !important;
  /* top: 37% !important; */
  width: 10px !important;
  height: auto !important;
}
.caseMain{
  background: #fff;
  text-align: center;
}
.caseMain .businessTitle {
  text-align: center;
  padding: 60px 0 40px;
}
.caseMain #casebox {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #2dafad;
}
.caseMain .case{
  width: 100%;
  display: flex;

}
.caseMain .caseLi {
  height: 400px;
  position: relative;
}
.caseMain .caseLiInfo{
  background: #2dafad;
  height: 400px;
  flex: 1;
  position: relative;
  flex-shrink: 0;
  text-align: left;
}
.caseMain .caseLiImg{
  z-index: 2;
  max-width: 460px;
  flex-shrink: 0;
}
.caseMain .caseLiInfo .solveContentMain{
  padding: 60px 40px 60px;
  color: #fff;
}
.caseMain .caseLiInfo .solveContentMain .title{
  font-size: 20px;
  font-weight: bold;
  color: #fff;

}
.caseMain .caseLiInfo .solveContentMain .text{
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1px;
  position: relative;
  color: #fff;
  margin-top: 20px;

}

.caseMain .caseLiInfo .solveContentMain .understand {
  width: 100px;
  height: 30px;
  border:1px solid #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
  margin-top: 80px;
  cursor: pointer;
}
.caseMain .caseLiInfo .solveContentMain .understand a{
  color: #fff;
}
.caseMain .mask{
  position: absolute;
  background: #00000040;
  height: 100%;
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out;
}

.news{
  padding-bottom: 0px;
  background-color: #f6f7fb;
  margin-top: 20px;
  height: 670px;
  position: relative;
}

.news .businessTitle {
  text-align: center;
  padding: 60px 0 40px;
}
.news .newsMain{
  width: var(--main-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 320px;
}
.newsSwiper{
  height: 320px;
  width: 500px;
  position: relative;
  flex-shrink: 0;
}
.newsSwiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #000;
}
.newsSwiper .swiper-slide img{
  width: 100%;
  /* height: 100%; */
  max-height: 100%;
}
.newsSwiper .swiper-slide .swiperContent{
  position: absolute;
  bottom: 0;
  height: 40px;
  background: #00000099;
  width: 100%;
  line-height: 40px;
}
.newsSwiper .swiper-slide .swiperContent .textValue{
  color: #fff;
  font-weight: bold;
  line-height: 40px;
  padding: 0 20px;
}
.newsSwiper .swiper-slide .swiperContent .textValue a{
  color: #fff;
}
.newsSwiper .swiper-pagination-bullet {
  background: #fefdfd50 !important;
  opacity: 1 !important;
}
.newsSwiper .swiper-pagination-bullet-active {
  background: #fff !important;
}
.newsSwiper .news-pagination{
  position: absolute;
  right: 10px !important;
  width:auto !important;
  left: auto !important;
  bottom: 16px !important;
}
.news .newList{
  margin-left: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news .newList .item{
  /* padding: 30px 0; */
  display: flex;
  /* padding: 11px; */
  border-bottom: 1px solid #e5e5e5;
  padding-top: 11px;
  padding-bottom: 11px;
}
.news .newList .item:first-child{
  padding-top: 0;
}
/* .news .newList .item:last-child{
  padding-bottom: 0;
} */
.news .newList .item .dateBox{
  display: flex;
  flex-direction: column;
  background-color: #2dafad;
  height: 76px;
  width: 76px;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
  border-radius: 4px;
}
.news .newList .item .dateBox .day{
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  line-height: 20px;
}
.news .newList .item .dateBox .month{
  font-size: 14px;
  color: #fff;
  line-height: 14px;
}
.news .newList .item .newInfo .title{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
.news .newList .item .newInfo .newText{
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; /* 控制显示的行数 */
  width: 510px;
  color: #7a7b7d;

}
.seeMoreNew{
  text-align: right;
  color: #2dafad;
  margin-top: 10px;
  cursor: pointer;
}
.seeMoreNew a{
  color: #2dafad;
}

.entrance{
  width: 1000px;
  height: 180px;
  background: url('../img/index/entrance.png') no-repeat;
  background-size: 100% 100%;
  padding: 40px 80px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px auto 0;
}
.entrance .textBox{
  display: flex;
  flex-direction: column;
}
.entrance .textBox .textName{
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
}
.entrance .textBox .textTitle{
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 28px;
}
.entrance .textBtn{
  width: 100px;
  text-align: center;
  color: #2dafad;
  background-color: #fff;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  cursor: pointer;
} 
.entrance .textBtn a{
  color: #2dafad;
}