.wrapper{
  margin: 0 0 40px 0;
}
.wrap-news {
  /*max-width: 1000px;*/
  margin: 0 auto;
}

.news-list {
  border: solid 1px #e2e0e0;
  transition: all 0.5s ease-in-out;
  margin-bottom: 50px;
}
.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: #c8cf72;
}
.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-weight: 600;
}
.news-list .news-list-info .news-list-text {
  margin: 10px 0;
  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: 5px 15px;
  font-size: 0.9rem;
  color: #fff !important;
  background-color: #c8cf72;
  border-radius: 3px;
}

/* News Detail ============================================================== */
.wrap-news-detail {
  word-break: break-all;
}
.wrap-news-detail a:hover {
  color: #c8cf72;
}
.news-detail-title {padding: 0 0 20px 0;}
.news-detail-title h1 {
  font-size: 1.7rem;
  font-weight: 600;
}
@media (max-width: 460px) {
  .news-detail-title h1 {
    font-size: 1.2rem;
  }  
}

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

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

.news-detail-btn {
	display: block;
	width: 208px;
	line-height: 56px;
	border-radius: 28px;
	border: 1px solid #249095;
	text-align: center;
	color: #fff !important;
	font-family: "Noto Serif TC", sans-serif;
	font-weight: 500;font-size: 16px;
	box-shadow:inset 0px 0px 0px 2px #fff; 
	background: linear-gradient(19deg, #249095 10%, #32a2b0 100%); 
	transition: all 0.4s ease-out 0s;
	padding: 5px 30px;
	margin: auto;
}

.news-detail-btn:hover { 
	box-shadow:inset 0px 0px 0px 0px #fff, 0px 0px 10px 0px #249095; 
	border:2px solid #fff; 
	transform: scale(0.9);
}

@media (max-width: 760px) {
  .news-list {margin-bottom: 40px;}
}