﻿.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  border-bottom: 2px solid #ebebeb;
}
.card-head-main{
    position: relative;
    line-height: 60px
}
.card-head-main::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 4px solid #c50001;
}
.card-head-title {
  font-size: 18px;
  font-weight: 600;
  color: #c50001;
}
.card-head-meta{
   display: flex;
   align-items: center;
}
.card-head-meta img{
    width: 17px;
    height: 17px;
    margin-right:12px;
    object-fit: cover;
}
.card-head-extra {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}
.card-content{
   
    padding: 10px;
}