  .corporateCultureGroup {
  background: url(/static/assets/images/corporateCultureMainBack1.png) no-repeat;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
}
.corporateCultureGroup .ENText {
  font-size: 36px;
  font-family: Arial-Regular, Arial;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
      margin-top: 60px;
}
.corporateCultureGroup .CHText {
  font-size: 40px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #ffffff;
}
.corporateCultureGroup .ENText,
.corporateCultureGroup .CHText {
  opacity: 0;
  transform: translateY(20px);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.corporateCultureGroup .ENText {
  animation: fadeInUp 1s forwards;
}

.corporateCultureGroup .CHText {
  animation: fadeInUp 1s forwards 0.5s; /* 加入延迟让中文文本稍后显示 */
}
.corporateCultureMain {
  margin-bottom: 120px;
}
.corporateCultureMain .buttons {
  display: flex;
  width: 1300px;
  justify-content: center;
  margin: 50px auto 0;
}
.corporateCultureMain .buttons .button {
  width: 183px;
  height: 44px;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  border: 1px solid #c4cbdb;
  font-size: 18px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #383838;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  cursor: pointer;
}
.corporateCultureMain .corporateCultureContent {
  width: 1262px;
  margin: 30px auto 0;
  padding: 30px;
  background: #ffffff;
}
.corporateCultureMain .corporateCultureContent img {
  width: 100%;
  height: 100%;
}
.corporateCultureMain .buttons .button.btnActive {
  background: #016d3b;
  color: #ffffff;
}
