  .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; /* 加入延迟让中文文本稍后显示 */
}
.socialMain {
  width: 1300px;
  margin: 0 auto;
}
/* .socialMain .Currentposition {
  display: flex;
  flex-direction: row;
  width: 1300px;
  justify-content: flex-start;
  margin: 20px auto 0;
}
.socialMain .Currentposition .position-text {
  color: #9c9c9c;
}
.socialMain .Currentposition .position-text .nowPostion {
  color: #016d3b;
} */
.socialMain .socialItems {
  margin-top: 40px;
}
.socialMain .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;
}
.socialMain .newsItems .newsItem .newsItemContent {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.socialMain .newsItems .newsItem:hover .newsText .textHeader {
  color: #016d3b;
}
.socialMain .newsItems .newsItem .newsImg {
  width: 278px;
  height: 160px;
}
.socialMain .newsItems .newsItem .newsImg img {
  width: 100%;
  height: 100%;
}
.socialMain .newsItems .newsItem .newsText {
  width: 703px;
  margin-left: 40px;
}
.socialMain .newsItems .newsItem .newsText .textHeader {
  font-size: 20px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #444a67;
}
.socialMain .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;
}

.socialMain .newsItems .newsItem .newsTime {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 144px;
  justify-content: center;
}
.socialMain .newsItems .newsItem:hover .newsTime {
  background: #016d3b;
  color: #fff;
}
.socialMain .newsItems .newsItem:hover .newsTime .month {
  color: #fff;
}
.socialMain .newsItems .newsItem:hover .newsTime .year-day {
  color: #fff;
}
.socialMain .newsItems .newsItem .newsTime .month {
  font-size: 44px;
  font-family: Arial-Regular, Arial;
  font-weight: 400;
  color: #444a67;
}
.socialMain .newsItems .newsItem .newsTime .timeBorder {
  width: 39px;
  height: 0px;
  opacity: 1;
  border: 1px solid #c4cbdb;
}
.socialMain .newsItems .newsItem .newsTime .year-day {
  font-size: 17px;
  font-family: Arial-Regular, Arial;
  font-weight: 400;
  color: #c4cbdb;
}
