.news{
  padding: 85px 0;
  background: url(../images/bg.png) no-repeat center bottom;
  background-size: 100% 100%;
}

.item{
  display: flex;
  background: #fff;
  padding: 25px 24px;
  margin-bottom: 30px;
  transition: all .3s;
}
.item:hover{
  box-shadow: 0 5px 5px rgba(31,97,105,0.13),0 -5px 5px rgba(31,97,105,0.13);
}
.item_img{
  width: 390px;
  min-width: 390px;
  margin-right: 120px;
}
.item_img img{
  width: 100%;
}
.item_text{
  max-width: calc(100% - 510px);
  padding-top: 13px;
}
.title h3{
  font-size: 20px;
  line-height: 1;
}
.text{
  width: 100%;
  font-size: 16px;
  line-height: 1;
  color: #666;
  line-height: 1;
  margin-top: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}
.date{
  width: 138px;
  height: 37px;
  background: #71c03d;
  display: flex;
  align-items: center;
  margin-top: 37px;
}
.date p{
  flex: 1;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 20px;
  height: 20px;
}
.date p:nth-child(1){
  border-right: 1px solid #fff;
}
.item_icon{
  margin-top: 28px;
}

.paging{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 82px;
}
.icon{
  background: #6d7781;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 20px;
}
.icon:hover{
  background: #21cd6b;
}
.paging span{
  display: block;
  min-width: 31px;
  text-align: center;
  font-size: 20px;
  color: #666666;
  cursor: pointer;
}
.paging span:hover{
  color: #15a955;
}
.paging span.active{
  color: #15a955;
}


@media screen and (max-width: 1420px){
  .item_img{
    width: 300px;
    min-width: 300px;
    margin-right: 60px;
  }
  .item_text{
    max-width: calc(100% - 360px);
  }
  .title h3{
    font-size: 16px;
  }
  .text{
    font-size: 14px;
  }
  .date{
    margin-top: 20px;
  }
  .item_icon{
    margin-top: 10px;
  }
}
@media screen and (max-width: 764px){
  .item{
    display: block;
  }
  .item_text{
    min-width: 100%;
    width: 100%;
  }
}