.work-cards {
  position: relative;
  width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.work-card {
  margin-bottom: 24px;
  width: 250px;
  height: 225px;
  display: block;
  background: #FFFFFF;
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  transition: transform .5s ease, box-shadow .5s ease; }
  .work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.3); }
  .wookmark-initialised .work-card {
    margin-left: 0; }
  .work-card:hover {
    color: #E74B3B; }
  .work-card .work-card-body video {
    max-width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0; }
  .work-card .work-card-body .stat {
    color: #fff;
    position: absolute;
    bottom: 5px; }
    .work-card .work-card-body .stat.position-left {
      left: 12px; }
    .work-card .work-card-body .stat.position-right {
      right: 12px; }
  .work-card .main-cover {
    height: 143px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative; }
    .work-card .main-cover img {
      display: block;
      max-width: 100%; }
  .work-card .work-card-footer {
    text-align: center;
    padding: 12px 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 226px;
  padding: 0 12px;
  margin-top: 10px;
  font-size: 14px;
  font-family: PingFang TC-Medium, PingFang TC;
  font-weight: 500;
  color: #333; }

.bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  margin-top: 15px; }
  .bottom span {
    font-size: 12px;
    font-family: PingFang TC-Regular, PingFang TC;
    font-weight: 400;
    color: #999;
    transform: translateY(-5px);
    display: inline-block; }
