.zyhk-list {
}

.zyhk-list-item {
  overflow: hidden;
  border-bottom: solid 1px #ebebeb;
  padding: 15px 0;
}

.zyhk-list-item-date {
  float: right;
  font-size: 14px;
  color: #666;
}

/* 大屏幕（大桌面显示器，大于等于 1200px） */
@media (min-width: 1200px) {
  .zyhk-list-item {
    padding: 20px 0;
  }

  .zyhk-list-item-title {
    position: relative;
    float: left;
    padding-left: 20px;
  }
  .zyhk-list-item-title::after {
    position: absolute;
    left: 2px;
    margin-top: -2px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 4px;
    height: 8px;
    background: #124fb0;
  }

  .zyhk-list-item-date {
  }
}

.zyhk-lecture {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.zyhk-lecture .item {
  width: calc((100% - 20px) / 2);
  background: linear-gradient(#f7f8fb, #e3e7f3);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  margin-bottom: 10px;
}
.zyhk-lecture .item:hover {
  background: #d4dbf1;
}

.zyhk-lecture .item > div:first-child {
  width: 100px;
  border-right: dashed 1px #c0c0c0;
}

.zyhk-lecture .item .date {
  font-size: 18px;
  font-weight: bold;
}

.zyhk-lecture .item .time {
  font-size: 18px;
  color: #3957b2;
  font-weight: bold;
}
.zyhk-lecture .item .lecturer {
  color: #999;
  font-size: 14px;
}
