  .newsCrumbs {
  background: url(/static/assets/images/zhongdeGroup.png) no-repeat;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
}
.newsCrumbs .ENText {
  font-size: 36px;
  font-family: Arial-Regular, Arial;
  font-weight: 400;
  color: #ffffff;
  margin-top: 60px;
}
.newsCrumbs .CHText {
  font-size: 40px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #ffffff;
}
.newsCrumbs .ENText,
.newsCrumbs .CHText {
  opacity: 0;
  transform: translateY(20px);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.newsCrumbs .ENText {
  animation: fadeInUp 1s forwards;
}

.newsCrumbs .CHText {
  animation: fadeInUp 1s forwards 0.5s; /* 加入延迟让中文文本稍后显示 */
}
.newsContentMain {
  width: 1300px;
  margin: 45px auto 0;
}

.newsContentMain .newsItems .newsItem {
  height: 196px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  margin: 20px 0;
  cursor: pointer;
  padding-left: 20px;
}
.newsContentMain .newsItems .newsItem .newsItemContent {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.newsContentMain .newsItems .newsItem:hover .newsText .textHeader {
  color: #016d3b;
}
.newsContentMain .newsItems .newsItem .newsImg {
  width: 278px;
  height: 160px;
}
.newsContentMain .newsItems .newsItem .newsImg img {
  width: 100%;
  height: 100%;
}
.newsContentMain .newsItems .newsItem .newsText {
  width: 703px;
  margin-left: 40px;
}
.newsContentMain .newsItems .newsItem .newsText .textHeader {
  font-size: 20px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #444a67;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsContentMain .newsItems .newsItem .newsText .textContent {
  margin-top: 20px;
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #949eb2;
  line-height: 28px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newsContentMain .newsItems .newsItem .newsTime {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 144px;
  justify-content: center;
}
.newsContentMain .newsItems .newsItem:hover .newsTime {
  background: #016d3b;
  color: #fff;
}
.newsContentMain .newsItems .newsItem:hover .newsTime .month {
  color: #fff;
}
.newsContentMain .newsItems .newsItem:hover .newsTime .year-day {
  color: #fff;
}
.newsContentMain .newsItems .newsItem .newsTime .month {
  font-size: 44px;
  font-family: Arial-Regular, Arial;
  font-weight: 400;
  color: #444a67;
}
.newsContentMain .newsItems .newsItem .newsTime .timeBorder {
  width: 39px;
  height: 0px;
  opacity: 1;
  border: 1px solid #c4cbdb;
}
.newsContentMain .newsItems .newsItem .newsTime .year-day {
  font-size: 17px;
  font-family: Arial-Regular, Arial;
  font-weight: 400;
  color: #c4cbdb;
}

.newsBox .newsHtml {
  width: 1060px;
  background: #ffffff;
  margin: 40px auto 0;
  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: 65.47vw;
  height: 94px;
  background: #fff;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 25px 0 25px 2.34vw;
}

.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;
}
.SecondaryPage .EnterpriseA {
  position: relative;

  width: 80px;
  height: 80px;
  /* background: red; */
  margin: 0 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
}
.SecondaryPage {
  width: 100%;
  height: 93px;
  background: #f5f7f9;
  display: flex;
  background: #f5f7f9;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e3e3e3;
}
.SecondaryPage > div {
  position: relative;

  width: 80px;
  height: 80px;
  /* background: red; */
  margin: 0 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.SecondaryPage > div .image {
  width: 42px;
  height: 38px;
  margin-bottom: 10px;
}
.SecondaryPage > div .image img {
  width: 100%;
  height: 100%;
}
.SecondaryPage > div .text {
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #9c9c9c;
}
