.top-header-article {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  background-color: unset;
  height: unset;
  flex-direction: row;
  align-items: unset;
}

.top-header-article .header-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 121px;
  background: #F8F9FA;
  padding: 0 35px;
  position: relative;
}

.top-header-article .header-left::before {
  content: "";
  width: 6px;
  height: 72px;
  background: #004EB3;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top-header-article .title {
  font-size: 32px;
  font-weight: bold;
  color: #004EB3;
  width: 720px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 0;
  text-align: left;
  white-space: unset;

}

.top-header-article .school-img {
  width: 335px;
  height: 121px;
  border-radius: 6px;
  background-size: cover !important;
}


/* ÒÆ¶¯¶Ë */
@media screen and (max-width: 960px) {
  .top-header-article {
    flex-direction: column;
    padding: 0;
  }

  .top-header-article .header-left {
    padding: 0 20px;
    height: 80px;
  }

  .top-header-article .header-left::before {
    height: 36px;
  }

  .top-header-article .title {
    width: 100%;
    font-size: 18px;
  }

  .top-header-article .header-right {
    display: none;
  }
}