.MeetItemCard {
  padding: 0 10px;
  display: inline-block;
  vertical-align: top;
}
.MeetItemCard .cardInner {
  width: 280px;
  height: 288px;
  margin-top: 30px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 2px 8px 1px rgba(51, 51, 51, 0.2);
  box-shadow: 0 2px 8px 1px rgba(51, 51, 51, 0.2);
}
.MeetItemCard .cardInner:hover {
  margin-top: 20px;
  -webkit-box-shadow: 0 2px 10px 1px rgba(51, 51, 51, 0.4);
  box-shadow: 0 2px 10px 1px rgba(51, 51, 51, 0.4);
}
.MeetItemCard .cardInner .contsWrap {
  border-radius: 0 0 5px 5px;
  height: 143px;
}
.MeetItemCard .item_img {
  display: block;
  width: 100%;
  height: 145px;
  border-radius: 5px 5px 0 0;
}
.MeetItemCard .conts,
.MeetItemCard .iTitle {
  max-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
}
.MeetItemCard .aIcon {
  width: 12px;
  vertical-align: middle;
}
.MeetItemCard .ions {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
.MeetItemCard .iconCont {
  display: inline-block;
  vertical-align: middle;
}
.MeetItemCard .btnsRight {
  background: #f1f7ff;
}
.MeetItemCard .btnsRight,
.MeetItemCard .btnWrap {
  text-align: center;
  padding: 13px 0;
  border-top: 1px solid #f2f2f2;
  cursor: pointer;
}
.MeetItemCard .meetPass {
  position: absolute;
  bottom: 9px;
  right: 15px;
  width: 16px;
  height: 15px;
}
.MeetItemCard .meetPass:hover + .tip {
  opacity: 1 !important;
}
.el-row--flex {
  display: flex;
}