.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 31.25vw;
}

.banner-content {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.banner-title {
  position: absolute;
  left: 420px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #FFFFFF;
  z-index: 1;
  font-family: AlibabaHealthFont

}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-container {
  display: flex;
  justify-content: center;
  background: #F7F9FA;
}



.news {
  position: relative;
  margin-top: -100px;
  padding: 0 30px 30px 30px;
  background-color: #fff;
  border-radius: 20px;
  z-index: 1;
}

.header-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  font-size: 40px;
  font-weight: bold;
  color: #2C2F37;
}

.content {
  display: flex;
  justify-content: space-between;
}

.year-list {
  margin-right: 80px;
}

.year {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
  height: 60px;
  font-size: 24px;
  font-weight: bold;
  color: #CBCBCB;
  cursor: pointer;
}

.year::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #EFF2F5;
  border-radius: 6px;
}

.year-active {
  color: #00C4B3;
  font-size: 40px;
}

.year-active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #00c4b3;
  border-radius: 6px;
}

.article-list {
  flex: 1;
}

.article {
  margin-bottom: 30px;
  padding: 30px;
  background: #F7F7F7;
  border-radius: 16px;
}


.title {
  font-size: 24px;
  font-weight: bold;
  color: #2C2F37;
  cursor: pointer;
}

.title:hover {
  color: #00C4B3;
}

.desc {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #878D99;
}

.acticle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #CBCBCB;
}

.look-more {
  color: #00C4B3;
  cursor: pointer;
}
