.news_wrap {position: relative; width: 100%; border-top: 1px solid var(--black);}
.news_wrap .news_ul { display: flex;   flex-direction: column;}
.news_wrap .news_ul > .item { position: relative;  width: 100%; border-bottom: 1px solid #ddd;}
.news_wrap .news_ul > .item::after { content: ""; position: absolute;  /*bottom: 0;*/  left: 0; width: 100%;  height: 1px; background: var(--point);  transform: scaleX(0);  transform-origin: left; transition: transform ease 1s;}
.news_wrap .news_ul > .item:hover::after { transform: none; opacity: 1;}
.news_wrap .news_ul > .item .link { display: flex; justify-content: space-between;  align-items: center; gap: 6.125rem; padding: 4.3rem 1.5rem;}
.news_wrap .news_ul > .item .link .cate { font-size: 1rem; font-weight: 700; color: var(--point); min-width: 4rem;}
.news_wrap .news_ul > .item .link .title { flex: 1; font-size: 1.4rem;  font-weight: 600; color: var(--black); /*white-space: nowrap;  overflow: hidden; text-overflow: ellipsis; */}
.news_wrap .news_ul > .item .link .date { font-size: 1rem; font-weight: 500; color: #8e8e8e;}
.news_wrap .news_ul > .item .link .blank { flex: 1; font-size: 1.4rem;  font-weight: 700; color: var(--black);}



/* Tablet */
@media screen and (max-width: 1024px) {


  .news_wrap .news_ul > .item .link { gap: 1.5rem; padding: 3.5rem 0rem; flex-flow: column; align-items : normal; }
  .news_wrap .news_ul > .item .link .title { font-size: 1.125rem;}
  .news_wrap .news_ul > .item .link .date {text-align: right;}


}



/* Mobile */
@media screen and (max-width: 599px) {

  .news_wrap .news_ul > .item .link { gap: 1rem; padding: 1.25rem 0.938rem;}
  .news_wrap .news_ul > .item .link .cate {font-size: 0.75rem; min-width: 3rem;}
  .news_wrap .news_ul > .item .link .title {font-size: 0.875rem; font-weight:500; }
  .news_wrap .news_ul > .item .link .date {font-size: 0.75rem;}


}