  .socialText {
  background: url(/static/assets/images/mainBusinessBackImg1.png) no-repeat;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
}
.socialText .ENText {
  font-size: 36px;
  font-family: Arial-Regular, Arial;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
      margin-top: 60px;
}
.socialText .CHText {
  font-size: 40px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #ffffff;
}
.socialText .ENText,
.socialText .CHText {
  opacity: 0;
  transform: translateY(20px);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.socialText .ENText {
  animation: fadeInUp 1s forwards;
}

.socialText .CHText {
  animation: fadeInUp 1s forwards 0.5s; /* 加入延迟让中文文本稍后显示 */
}
.newsBox {
  margin-top: 50px;
}
.newsBox .newsHtml {
  width: 1060px;
  background: #ffffff;
  margin: 0 auto;
  padding: 60px 120px;

  /* 动画 */
  overflow: hidden;
  position: relative;
}
.newsBox .newsHtml .newsTitle {
  text-align: center;
  font-size: 24px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  color: #016d3b;
  margin: 0 0 20px;
}
.newsBox .newsHtml .inputTime {
  font-size: 16px;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  color: #848ea1;
  text-align: center;
  padding-bottom: 50px;
  border-bottom: 1px solid #DEE2EB;
}
.newsBox .newsHtml .content{
  margin-top: 60px;
}
.newsBox .newsNavigation {
  width: 1257px;
  height: 94px;
  background: #fff;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 25px 0 25px 45px;
}

.newsBox .newsNavigation .newsPage {
  width: 1100px;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
}
.newsBox .newsNavigation .newsPage .previous,
.newsBox .newsNavigation .newsPage .next {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.newsBox .newsNavigation .newsPage .previous .previousText,
.newsBox .newsNavigation .newsPage .next .nextText {
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #016d3b;
  margin-right: 35px;
  cursor: pointer;
}

.newsBox .newsNavigation .newsPage .previous .previousContent,
.newsBox .newsNavigation .newsPage .next .nextContent {
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #949eb2;
}
.newsBox .newsNavigation .back {
  width: 120px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

.slide-out-right {
  animation: slideOutRight 1s forwards;
}

.slide-out-left {
  animation: slideOutLeft 1s forwards;
}
