/* 会议、论坛 */
.academicItem {
  width: 280px;
  border-radius: 4px;
  overflow: hidden;
  background: #FEFEFE;
  box-shadow: 0 0 6px 0 rgba(212,212,212,0.50);
  position: relative;
  top: 0;
}
.academicItem:hover {
  top: -10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}
.academicItem .innerItem {
  padding: 13px 12px 20px;
}
.academicItem .topImg {
  width: 280px;
  height: 145px;
}

.meetPage .academicItem {
  margin-top: 30px;
}
.meetPage .academicItem:nth-child(1),
.meetPage .academicItem:nth-child(2),
.meetPage .academicItem:nth-child(3) {
  margin-top: 0;
}


.talkPage .academicItem {
  width: 100%;
}
.talkPage .academicItem .topImg {
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.talkPage .academicItem:last-child {
  margin-bottom: 0;
}