@charset "UTF-8";
/* CSS Document */
.newIcon {
  border-radius: 5px;
  padding: 0 20px;
  line-height: 32px;
  height: 30px;
  display: inline-block;
  font-size: 14px;
}

/*新訊列表*/
ul.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
ul.newsList li {
  width: 33.33%;
}
ul.newsList li:hover .item .Img {
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
ul.newsList li:hover .item .Txt h3 a {
  color: #ba881b;
  letter-spacing: 3px;
}
ul.newsList li .item {
  padding: 0 15px 30px 15px;
}
ul.newsList li .item .Img {
  border-radius: 15px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  overflow: hidden;
  position: relative;
}
ul.newsList li .item .Img .newIcon {
  -webkit-transform: translate(0, -5px);
          transform: translate(0, -5px);
  margin-bottom: 5px;
  border-radius: 5px;
  padding: 0 20px;
  line-height: 32px;
  height: 30px;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
}
ul.newsList li .item .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
ul.newsList li .item .Txt {
  padding: 15px 0px 0 0px;
}
ul.newsList li .item .Txt h3 {
  color: #3d3d3d;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
}
ul.newsList li .item .Txt h3 a {
  line-height: 24px;
  color: #3d3d3d;
  display: inline-block;
  background: url(../images/dotline-brown.png) repeat-x bottom left;
  padding-bottom: 5px;
}
ul.newsList li .item .Txt p {
  font-size: 15px;
  color: #747474;
  line-height: 1.5;
}
@media (max-width: 900px) {
  ul.newsList li {
    width: 50%;
  }
}
@media (max-width: 640px) {
  ul.newsList li {
    width: 100%;
  }
}

.titleArea {
  clear: both;
  margin-bottom: 25px;
  background: url(../images/dotline-brown.png) repeat-x bottom left;
}
.titleArea h1 {
  clear: both;
  padding: 10px 0;
  font-weight: 400;
  font-size: 25px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.titleArea h1 .newIcon {
  margin-right: 10px;
}