.wrap-news {
  max-width: 1000px;
  margin: 0 auto;
}

.news-list {
  border: solid 1px #e2e0e0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-top: 20%;
}
.news-list a {
  color: #000;
}
.news-list .news-list-pic {
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
}
.news-list .news-list-pic .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-list .news-list-pic .img-center img {
  max-height: 100%;
}
.news-list:hover .news-list-info {
  background-color: #0b63aa;
}
.news-list:hover .news-list-info .news-list-date {
  color: #fff;
}
.news-list:hover .news-list-info .news-list-title a, .news-list:hover .news-list-info .news-list-text {
  color: #fff;
}
.news-list:hover .news-list-info .news-list-btn {
  background-color: #fff;
  color: #000 !important;
}
.news-list .news-list-info {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 30px;
}
.news-list .news-list-info * {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.news-list .news-list-info .news-list-title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}
.news-list .news-list-info .news-list-text {
  margin: 10px 0;
  font-size: 0.9rem;
  font-weight: 200;
  line-height: 1.5rem;
  color: #333;
}

.news-list-btn-out {
  text-align: center;
}
.news-list-btn-out .news-list-btn {
  display: inline-block;
  padding: 10px 25px;
  font-size: 0.8rem;
  color: #fff !important;
  background-color: #0b63aa;
  border-radius: 3px;
}

/* News Detail ============================================================== */
.wrap-news-detail {
  margin: 0 auto;
  max-width: 1024px;
  font-size: 0.9rem;
  line-height: 2rem;
  padding-bottom: 5%;
}
.wrap-news-detail a:hover {
  color: #0b63aa;
}
.wrap-news-detail ul, .wrap-news-detail ol {
  padding-left: 20px;
}
.wrap-news-detail .news-detail-date {
  font-weight: bold;
  color: #212329;
  font-size: 15px;
}

.news-detail-btn-out {
  margin-top: 5%;
}

.news-detail-btn-out {
  text-align: center;
}

.news-detail-btn {
  display: inline-block;
  border: 2px solid #212329;
  color: #fff!important;
  font-weight: bold;
  padding: 5px 25px;
  background: #212329;
}
.news-detail-btn:hover {
  color: #fff !important;
  border: 2px solid #e85a00;
  background: #e85a00;
}

@media (max-width: 980px) {
  .wrap-news-detail{
	padding-bottom: 30px;
  }
}