/* 新闻动态 */
.news_menu .news_item{
  border-radius:10px;
  background: #fff;
  border:1px solid #D8D8D8;
  padding: 20px;
  transition: box-shadow .5s ease-in-out, border-color .3s ease-in-out;
  margin-bottom: 20px;
  width: 100%;
}

.news_item.order_left .img_box{
  order: 3;
}
.news_item.order_left .presentation{
  order: 2;
  text-align: right;
}
.news_item.order_left .presentation .tag{
  justify-content: flex-end;
}
.news_item.order_left .view_details{
  order: 1;
}

.news_item .img_box{
  width: 260px;
  height: 160px;
  overflow: hidden;
  flex-shrink:0;
}
.news_item .img_box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-out;
}
.news_item .presentation{
  flex:1;
  padding: 13px 28px 8px;
  overflow: hidden;
}
.news_item .presentation .title{
  /* color: #507390; */
  margin-bottom: 14px;
  transition: all .3s;
  line-height: 26px;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}

.news_item .presentation .detail_text{
  line-height: 22px;
  overflow:hidden;
  display: -webkit-box;
  -webkit-line-clamp:2;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
}

@media (-ms-high-contrast: active),(-ms-high-contrast: none){
  .news_item .presentation .detail_text{
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
  }
}
.news_item .tag{
  line-height: 22px;
}
.news_item .view_details {
  padding: 14px 20px 0;
  color: #507390;
}
.news_item .view_details .may {
  margin-bottom: 26px;
}
.news_item .view_details .may .num{
 margin-right: 10px;
}
.news_item .news_btn{
  display: inline-block;
  width:108px;
  border-radius:18px;
  background: rgba(120,210,255,0) ;
  height:36px;
  line-height: 36px;
  transition: background-color .3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.news_item .btn_inner{
  color:#fff;
}

.news_item .view_details .news_btn .iconfont{
  transition: left .3s ease-in;
  position: absolute;
  left: 0;
  top:50%;
  transform: translate(0,-50%);
}

.news_item .time{
  color:#D8D8D8;
}

.news_item .more_btn {
  display: none;
  padding: 0 24px;
  width: 104px;
  height:36px;
  border-radius:40px;
  border:1px solid #00A6FD;
  color:#00A6FD;
  transition: all .3s;
  margin: 40px auto 0;
}

/* hover */
@media (min-width: 992px){
  .news_item:hover {
    box-shadow:0px 10px 20px 0px rgba(0,148,219,0.1);
    border-color:#fff;
  }
  .news_item:hover .title{
    color:#00A6FD;
  }
  .news_item:hover .news_btn{
    background: rgba(120,210,255,1) ;
    color: #fff;
  }
  .news_item:hover img{
    transform:  scale(1.1);
  }
  .news_item:hover .news_btn .iconfont{
    left: 90px;
  }
}

@media (max-width: 992px){
  .news_menu .news_item  {
    border: none;
    border-bottom: 1px solid #D8D8D8;
    border-radius:0;
    padding: 18px 0 8px;
    margin: 0;
  }
  .news_item .presentation .title{
    margin-bottom: 8px;
  }
  .news_item .img_box,
  .news_item .view_details,
  .news_item .tag{
    display: none;
  }
  .news_item .presentation {
    overflow: hidden;
    text-align: left !important;
  }
  .news_item .detail_text,
  .news_item .title{
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
  }
  .news_item .detail_text {
    margin-bottom: 14px;
  }
  .news_item .time{
    display: block;
  }
}

