@charset "utf-8";

.latest li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.0625rem;
  padding: 10px 15px;
  border-bottom: 1px solid #dcdcdc;
}
.latest li p{
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.latest li .detail{
  padding: 7px 16px;
  font-size: 0.75rem;
  color: #898989;
  background-color:#eeeeee ;
  border-radius: 3px;
}
@media(max-width: 767px) {
  .latest li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9375rem;
    padding: 10px 15px;
    border-bottom: 1px solid #dcdcdc;
  }
  .latest li p{
    margin-right: 10px;
  }
  .latest li a{
    padding: 4px 10px;
  }
}