  .zhongdeGroup {
  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;

}
.zhongdeGroup .ENText {
  font-size: 36px;
  font-family: Arial-Regular, Arial;
  font-weight: 400;
  color: #ffffff;
      margin-top: 60px;
}
.zhongdeGroup .CHText {
  font-size: 40px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #ffffff;
}
.zhongdeGroup .ENText,
.zhongdeGroup .CHText {
  opacity: 0;
  transform: translateY(20px);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zhongdeGroup .ENText {
  animation: fadeInUp 1s forwards;
}

.zhongdeGroup .CHText {
  animation: fadeInUp 1s forwards 0.5s; /* 加入延迟让中文文本稍后显示 */
}
