.main {
  padding: 60px 0 0 0;
  width: 1200px;
  margin: 0 auto;
}

.u-list {
  display: flex;
  flex-wrap: wrap;
}

.u-list-wrap {
  padding: 10px 10px 40px 10px;
  width: calc(50% - 20px);
  margin-right: 40px;
  border-bottom: 1px solid hsla(0, 0%, 60%, .15);
}

.u-list-wrap:nth-of-type(2n) {
  margin-right: 0;
}

.u-list-wrap ._title {
  color: #333;
  font-size: 16px;
  margin-bottom: 10px;
  cursor: pointer;
}
.u-list-wrap ._title:hover{
  color: #f13a3a;
}

.u-list-wrap ._date {
  color: #999;
  font-size: 14px;
}

.u-list-wrap ._cont {
  color: #666;
  font-size: 14px;
  line-height: 26px;
  margin-top: 14px;
}

.u-head{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.u-head-wrap{
  width: calc(33% - 40px);
  margin-right: 40px;
}
.u-head-wrap:nth-of-type(3n){
  margin-right: 0;
}
.u-head-wrap img{
  display: block;
  width: 100%;
  height: 278px;
}
.u-head-main{
  padding: 0 20px;
  cursor: pointer;
}
.u-head-main:hover{
  background: #f8f8f8;
}
.u-head-main:hover .u-head-date ._date{
  transform: translateY(0);
  opacity: 1;
}
.u-head-cont{
  padding: 20px 0;
  border-bottom: 1px solid hsla(0, 0%, 60%, .15);
}
.u-head-cont ._title {
  color: #333;
  font-size: 16px;
  margin-bottom: 10px;
  cursor: pointer;
}
.u-head-cont ._title:hover{
  color: #f13a3a;
}
.u-head-cont ._cont {
  color: #666;
  font-size: 14px;
  line-height: 26px;
  margin-top: 14px;
}
.u-head-date{
  height: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.u-head-date ._date{
  font-size: 16px;
  color: rgb(153, 153, 153);
  transition: .5s all;
  transform: translateY(65px);
  opacity: 0;
}

.oneOmit{
  white-space: normal;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-line-clamp: 1;
}