.news {
  width: 70%;
  margin: 50px auto;
}
.news .title p {
  width: 60px;
  height: 3px;
  background-color: #0075C2;
}
.news .main ul li {
  border-bottom: 2px dotted #ccc;
  padding: 20px;
}
.news .main ul li a {
  display: flex;
}

.news .main ul li a .pic {
  border: 1px solid #e3e3e3;
  padding: 5px;
}
.news .main ul li a .pic img{
  width: 200px;
  height: 150px;
}
.news .main ul li a .intro {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0px 30px;
}
.news .main ul li a .intro .words {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news .main ul li a .intro h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 5px 0;
  color: #333;
}
.news .main ul li a .intro p {
  line-height: 25px;
  color: #666;
}
.news .main ul li a .intro .time {
  text-align: right;
}
.news .main ul li:last-child {
  border: 0;
}
.news .more {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px auto;
}
.news .more span {
  width: 28%;
  display: inline-block;
  height: 1px;
  background-color: #ccc;
}
.news .more a {
  /* width: 150px; */
  display: inline-block;
  padding: 10px 30px;
  border-radius: 20px;
  background-color: #0075C2;
  color: #fff;
  text-align: center;
}
.detail {
  width: 70%;
  margin: 50px auto;
}
.detail .title p {
  width: 60px;
  height: 3px;
  background-color: #0075C2;
}
.detail .main .article {
  color: #666;
  padding: 20px;
}
.detail .main .article .biaoti {
  text-align: center;
}
.detail .main .article .biaoti h5 {
  font-size: 15px;
  font-weight: 600;
}
.detail .main .article p {
  text-indent: 2em;
  line-height: 35px;
  font-size: 14px;
  margin: 20px 0;
}
/*.detail .main .article {
  text-align: center;
}*/
.detail .main .article img {
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  .news {
    width: 100%;
    padding: 10px;
    margin: 0;
  }
  .news ul li a {
    display: flex;
    flex-direction: column;
  }
  .news .main ul li a .pic img {
    width: 100%;
    height: 150px;
  }
  .news ul li a .intro {
    width: 100%;
    padding: 10px 0 !important;
  }
  .news ul li a .intro .words {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .news .more {
    width: 100%;
    margin: 10px auto;
    margin-bottom: 30px;
  }
  .detail {
  width: 100%;
  padding: 10px;
  margin: 10px auto;
}
}
