@media all and (max-width: 720px) {
  .news_body_box_tab ul{
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .tab_item{
    flex: 1;
    padding: 12px 17px;
    box-sizing: border-box;
    position: relative;
    color: #9399A5;
    text-align: center;
  }
  .tab_item--active{
    color: #00552F;
    font-weight: bold;
  }
  .tab_item--active::after{
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    background: #00552F;
    width: 50px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
}

@media all and (min-width: 720px) {
  .news_body--mobile{
    display: none;
  }
}