.list_newsline {
  min-height: 50vh;
  border-top: 1px dotted #ccc;
}
.list_newsline .one {
  border-bottom: 1px dotted #ccc;
}
.list_newsline .one a {
  display: block;
  width: 100%;
  height: 100%;
  color: #333;
}
.list_newsline .one a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.list_newsline .one:nth-child(odd) a {
  background: #f6f6f6;
}
.list_newsline .one:nth-child(odd) a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.list_newsline .holding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.75em;
}
.list_newsline .holding > p {
  line-height: 1.5;
}
.list_newsline .date {
  min-width: 8em;
  white-space: nowrap;
  font-weight: bold;
}
.list_newsline .lead {
  margin-right: 2em;
}
.list_newsline .icon {
  margin-left: auto;
}
@media screen and (max-width: 559px) {
  .list_newsline .holding {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0.5em;
  }
  .list_newsline .date {
    min-width: auto;
    width: 100%;
  }
  .list_newsline .lead {
    width: calc(100% - 2em);
    margin-right: 0;
  }
  .list_newsline .icon {
    width: 2em;
    text-align: right;
  }
}