#schedules.show-am .item-pm,
#schedules.show-pm .item-am{
  display: none;
}

.schedule-item{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.schedule-item .info{
  position: relative;
}
.schedule-item .classify{
  position: absolute;
}
.schedule-item .pg-type{
  display: inline-block;
  vertical-align: bottom;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 0.7em;
  color: #fff;
  line-height: 1.2;
  margin-right: 3px;
}
.schedule-item .pg-type-Y{
  background-color: #f00;
}
.schedule-item .pg-type-Y:before{
  content: '首播';
}
.schedule-item .pg-type-N{
  background-color: #ff862c;
}
.schedule-item .pg-type-N:before{
  content: '新播';
}
.schedule-item .pg-type-R{
  background-color: #228155;
}
.schedule-item .pg-type-R:before{
  content: '重播';
}
