.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 1px #e2e0e0;
  border-radius: 6px 6px 6px 6px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-bottom: 30px;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .news-list {
    display: block; max-width: 600px; margin: 0 auto 30px auto;
  }
}
.news-list a {
  color: #000;
}
.news-list figure {
  position: relative;
  overflow: hidden;
  width: 35%;
  padding: 0 20px;
}
.news-list figure > a {display: block; position: relative; z-index: 1; padding-bottom: 66.67%;}
@media (max-width: 768px) {
  .news-list figure {
    /*padding-bottom: 50%;*/
    width: 100%;
  }
}
.news-list figure .img-center {
  display: block;
  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 figure .img-center img {
  max-height: 100%;
}
.news-list .news-info {
  position: relative;
  width: 60%;
  padding: 15px 15px 15px 30px;
}
@media (max-width: 768px) {
  .news-list .news-info {
    width: 100%;
    padding: 15px;
  }
}
.news-list .news-info .news-title {
  font-weight: 600;
}
.news-list .news-info .news-title a:hover {
  color: #0b63aa;
}
.news-list .news-info .news-text {
  color: #333;
}
.news-list:hover {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-box-shadow: 0px 5px 6px #d6d6d6;
          box-shadow: 0px 5px 6px #d6d6d6;
}

.news-btnbox {
  text-align: center;
  margin-top: 16px;
}

.news-btn {
  display: inline-block;
  padding: 5px 20px;
  font-size: 1rem;
  color: #838383 !important;
  background-color: #f7f7f7;
  border: solid 1px #adadad;
  border-radius: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.news-btn:hover {
  background: #0b63aa;
  color: #fff !important;
  border: solid 1px #0b63aa;
}

/* News Detail ============================================================== */
.wrap-news-detail {
  line-height: 2rem;
  padding-bottom: 60px;
}
.wrap-news-detail a:hover {
  color: #0b63aa;
}
.wrap-news-detail .news-detail-date {
  font-weight: bold;
  color: #0b63aa;
  font-size: 15px;
  padding-bottom: 20px;
  margin-top: -10px;
}
.news-detail-title {padding: 0 0 20px 0;}
.news-detail-title h1 {
  font-size: 1.7rem;
  font-weight: 600;
}

.news-detail-btn-out {
  margin-top: 5%;
}

.news-detail-btn-out {
  text-align: center;
}

.news-detail-btn {
  display: inline-block;
  border: 2px solid #0b63aa;
  color: #0b63aa !important;
  font-weight: bold;
  padding: 5px 25px;
}
.news-detail-btn:hover {
  color: #fff !important;
  background-color: #0b63aa;
}