.w .news .newslist a {
  display: flex;
  margin: 0 0 20px 0;
  transition: all ease-in-out 0.2s;
  border-radius: 6px;
  border: 1px solid #f2f2f2;
  padding: 20px;
}
.w .news .newslist a .pic {
  width: 300px;
  height: 180px;
  overflow: hidden;
  margin-right: 20px;
}
.w .news .newslist a .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.6s;
}
.w .news .newslist a .des {
  padding: 0 14px;
  flex: 1;
  overflow: hidden;
  transition: all ease-in-out 0.2s;
}
.w .news .newslist a .des h2 {
  margin: 12px 0;
  font-size: 18px;
  color: #222;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.w .news .newslist a .des .date {
  color: #909399;
  font-size: 12px;
  margin-bottom: 10px;
}
.w .news .newslist a .des .p {
  font-size: 14px;
  color: #909399;
  line-height: 1.7em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.w .news .newslist a:hover {
  box-shadow: 3px 3px 30px 0 rgba(0, 0, 0, 0.3);
}
.w .news .newslist a:hover .pic img {
  transform: scale(1.1);
}
.w .news .news-detail .news-tit {
  padding: 30px 20px;
  border-bottom: 1px solid #f2f2f2;
}
.w .news .news-detail .news-tit h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #303133;
}
.w .news .news-detail .news-tit .date {
  text-align: center;
  font-size: 12px;
  color: #909399;
}
.w .news .news-detail .detail {
  padding: 30px 0;
  line-height: 1.8em;
}
.w .news .news-detail .detail img {
  max-width: 100%;
}
.w .news .news-detail .detail p span {
  text-wrap: wrap!important;
}
.w .news .news-detail .content {
  border-top: 1px solid #f2f2f2;
  padding: 30px 0 0 0;
}
.w .news .news-detail .content .pre {
  margin-bottom: 10px;
}
@media (max-width: 750px) {
  .w .news .newslist {
    justify-content: space-between;
  }
  .w .news .newslist a {
    width: 48%;
    margin: 0 0 20px 0;
    display: block;
    box-sizing: border-box;
    padding: 0;
  }
  .w .news .newslist a .pic {
    height: 120px;
    width: 100%;
  }
  .w .news .newslist a .pic img {
    width: 100%;
  }
  .w .news .newslist a .des {
    padding-bottom: 16px;
  }
  .w .news .newslist a .des h2 {
    margin: 6px 0;
  }
  .w .news .newslist a .des .date {
    display: none;
  }
  .w .news .newslist a .des .p {
    height: 38px;
    line-height: 1.5em;
  }
  .w .news .news-detail .news-tit {
    padding: 20px 0;
  }
  .w .news .news-detail .content .pre {
    font-size: 14px;
  }
  .w .news .news-detail .content .pre a {
    font-size: 14px;
  }
}
