.wrap-news {
  max-width: 1000px;
  margin: 70px auto;
}

ul.news li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 96%;
  margin: 5% auto;
  background: #fff;
  border: solid 1px #E2E0E0;
  border-radius: 6px 0px 6px 6px;
  transition: all 0.2s;
}
ul.news li figure {
  width: 37%;
  position: relative;
  overflow: hidden;
}
ul.news li figure img {
  max-height: 100%;
  border-radius: 6px 0px 0px 6px;
}
ul.news li figure .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
ul.news li .inner {
  width: 55%;
  padding: 15px;
}
ul.news li .inner .time {
  display: inline-flex;
  flex-direction: column;
  width: 20%;
  margin-right: 10px;
  padding: 8px 15px;
  text-align: center;
  background: #444;
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  transition: background 0.2s linear 0s;
}
ul.news li .inner .time small {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  text-transform: capitalize;
}
ul.news li .inner .time small:before {
  content: "";
  display: block;
  margin-bottom: 5px;
  border-top: 1px solid #fff;
}
ul.news li .inner .title {
  display: inline-flex;
  flex-direction: column;
  width: 70%;
  margin-bottom: 6px;
  font-size: 1rem;
  color: #282828;
  text-align: left;
  font-weight: 400;
}
ul.news li .inner .title a:hover {
  color: #3e79ea;
}
ul.news li .inner .text {
  display: inline-flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  padding: 15px 0px 0px 20px;
  font-size: 0.9rem;
  font-weight: 200;
  line-height: 1.35rem;
  color: #333;
}
ul.news li:hover {
  transform: scale(0.98);
  box-shadow: 0px 5px 6px #d6d6d6;
}
ul.news li:hover .inner .time {
  background: #0070c9;
}

.news-btnbox {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.btn-news-readmore {
  margin-top: 16px;
  padding: 10px 25px;
  font-weight: 200;
  color: #333;
  background-color: #fff;
  border: solid 1px #adadad;
  border-radius: 3px;
}
.btn-news-readmore:hover {
  background: #333;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  ul.news li figure {
    width: 100%;
  }
  ul.news li .inner {
    width: 100%;
  }
}
/* News Detail ============================================================== */
h1.title-news {
  display: block;
  margin: 3% auto 3% auto;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 400;
  position: relative;
}
h1.title-news:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  margin-left: -40px;
  height: 3px;
  background: #ff8500;
}
h1.title-news:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 10px auto;
  border-bottom: 1px solid #f0f0f0;
}

.news-show img {
  margin: 2% auto;
  max-width: 100% !important;
  height: auto;
  display: block;
}

.news-btnbox-detail {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}

.btn-news-back {
  text-align: center;
  color: #fff !important;
  font-size: 15px;
  background: #2193e1;
  padding: 7px 20px;
  border-radius: 5px;
}
.btn-news-back:before {
  content: "";
  background: url(icons/icon-back-2.svg) no-repeat;
  padding: 0px 10px;
  margin-right: 5px;
}
.btn-news-back:hover {
  color: #fff;
}

.post-edit {
  margin: 1% auto;
  max-width: 1024px;
  padding: 20px;
  word-wrap: break-word;
}
.post-edit p {
  font-size: 1rem;
  line-height: 2rem;
}
.post-edit li {
  font-size: 1rem;
  line-height: 2rem;
}
.post-edit a:hover {
  color: #3e79ea;
}
.post-edit ul, .post-edit ol {
  padding-left: 20px;
}