.wrap-news {
  max-width: 1000px;
  margin: 0 auto;
}

.news-list {
  border: solid 1px #e2e0e0;
  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: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.news-list .news-list-pic .img-center img {
  max-height: 100%;
}
.news-list:hover .news-list-info {
  background-color: #fe9c97;
}
.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 {
  transition: all 0.2s ease-in-out;
  padding: 30px;
}
.news-list .news-list-info * {
  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:hover {
  transform: scale(0.97);
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.1);
}

.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: #35b5c0;
  border-radius: 3px;
}

/* News Detail ============================================================== */
.wrap-news-detail {
  margin: 0 auto;
  max-width: 1024px;
  font-size: 0.9rem;
  line-height: 2rem;
}
.wrap-news-detail a:hover {
  color: #fe9c97;
}
.wrap-news-detail ul, .wrap-news-detail ol {
  padding-left: 20px;
}

.news-detail-btn-out {
  margin-top: 5%;
}

.news-detail-btn-out {
  text-align: center;
}

.news-detail-btn {
  display: inline-block;
  color: #fff !important;
  background: #D95B16;
  padding: 5px 35px 5px 35px;
  border-radius: 3px;
  position: relative;
}
.news-detail-btn:hover {
  color: #fff;
  background: #ffc107;
}
.news-detail-btn:after {
  content: "";
  position: absolute;
  top: 13px;
  left: 20px;
  background: url(icons/icon-back-2.svg) no-repeat;
  width: 15px;
  height: 15px;
}