.news a {
  color: inherit;
}
.news em {
  font-style: normal;
}
.news .news-box {
  display: flex;
  justify-content: space-between;
}
.news .news-box .left {
  width: 885px;
}
.news .news-box .left .top {
  margin-top: -30px;
  padding: 0 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.news .news-box .left .top .type {
  color: #333;
  display: flex;
  font-size: 16px;
  line-height: 24px;
}
.news .news-box .left .top .type .name {
  font-weight: 500;
  padding-right: 10px;
}
.news .news-box .left .top .type .list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}
.news .news-box .left .top .type .list .item {
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 10px;
  margin-right: 4px;
  padding: 0 10px;
  transition: all 0.24s ease;
}
.news .news-box .left .top .type .list .item.active, .news .news-box .left .top .type .list .item:hover {
  background-color: #1d479c;
  color: #fff;
}
.news .news-box .left .news-list {
  margin: 15px 0 30px;
  min-height: 386px;
  padding: 0 42px 0 30px;
}
.news .news-box .left .news-list .news-item {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: space-between;
  line-height: 32px;
}
.news .news-box .left .news-list .news-item.top5:first-child .news-title .title {
  color: red;
}
.news .news-box .left .news-list .news-item.top5 .news-title .title {
  color: #ff7200;
}
.news .news-box .left .news-list .news-item:nth-child(5n) {
  margin-bottom: 14px;
}
.news .news-box .left .news-list .news-item .news-title {
  align-items: center;
  display: flex;
}
.news .news-box .left .news-list .news-item .news-title .title {
  color: #333;
  max-width: 600px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.24s linear;
}
.news .news-box .left .news-list .news-item .news-title .title:hover {
  color: #1d479c;
}
.news .news-box .left .news-list .news-item .news-title .recommend {
  background: url("../images/recommend.png") no-repeat center;
  background-size: contain;
  height: 13px;
  margin-left: 5px;
  width: 16px;
}
.news .news-box .left .news-list .news-item .news-title .hot {
  background: url("../images/hot.png") no-repeat center;
  background-size: contain;
  height: 13px;
  margin-left: 5px;
  width: 16px;
}
.news .news-box .left .news-list .news-item .news-time {
  color: #999;
}
.news .news-box .left .course {
  padding-top: 20px;
}
.news .news-box .left .course-list {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 20px;
}
.news .news-box .left .course-list .item {
  padding: 12px;
  font-weight: 400;
  font-size: 17px;
  color: #333;
  line-height: 21px;
  transition: all 0.24s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news .news-box .left .course-list .item:hover {
  color: #1d479c;
  box-shadow: 0 3px 2px 0 rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
}
.news .news-box .left .course-list .item img {
  width: 241px;
  height: 139px;
  margin-bottom: 10px;
  border-radius: 10px;
}
.news .news-box .right {
  width: 295px;
}