/* CSS Document */
.design_pr-004 .newsList .newsItem .item {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.newsIns .contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.newsIns .contentBox > .leftBox {
  width: 75%;
}
.newsIns .contentBox > .rightBox {
  width: 25%;
  padding-left: 50px;
}
@media (max-width: 1023px) {
  .newsIns .contentBox > .leftBox {
    width: 100%;
  }
  .newsIns .contentBox > .rightBox {
    width: 100%;
    padding-left: 0px;
  }
}

.newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
  gap: 20px;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
  padding: 5px 0;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
}
.newsInfoBox .classTitle {
  background-color: #171717;
  color: #fff;
  padding: 3px 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.25px;
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 15px 30px;
}
@media (max-width: 1180px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  padding: 20px 0px;
}
.newsList .Img {
  width: 100%;
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsList .Txt {
  padding: 5px 0;
  overflow: hidden;
}
.newsList .Txt .title a {
  display: block;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .newsList .Txt .title a {
    font-size: 22px;
  }
}
.newsList .Txt .text {
  height: 60px;
  color: #8B8B8B;
  font-size: 16px;
  padding-top: 10px;
  font-weight: 600;
}
@media (max-width: 1180px) {
  .newsList .Txt .text {
    font-size: 15px;
  }
}

.shareBox {
  float: right;
}
.shareBox .btn-fb {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.shareBox .back {
  display: inline-block;
  vertical-align: middle;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  background: rgb(174, 66, 51);
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(174, 66, 51)), to(rgb(196, 76, 76)));
  background: linear-gradient(to bottom, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ae4233", endColorstr="#c44c4c", GradientType=0);
  /* IE6-9 */
  cursor: pointer;
}
@media (min-width: 1181px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}

.wrap > .topBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
}
.wrap > .topBox .titleBox .titleTw {
  font-size: 32px;
  font-weight: bold;
}
.wrap > .topBox .bread {
  margin: 0;
  padding: 20px 0 32px;
  border: none;
}
.wrap > .topBox .bread .wrap {
  padding: 0;
}
.wrap > .topBox .bread .wrap img {
  opacity: 0.5;
}
@media (min-width: 1181px) {
  .wrap > .topBox .bread .wrap img:hover {
    opacity: 1;
  }
}

.design_pr-004 {
  padding: 64px 0;
}
.design_pr-004 .newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -11px;
  padding: 7px 20px;
}
.design_pr-004 .newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 11px 18px;
}
@media (max-width: 1023px) {
  .design_pr-004 .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .design_pr-004 .newsList .newsItem {
    width: 100%;
  }
}
.design_pr-004 .newsList .newsItem .item {
  position: relative;
}
@media (min-width: 1181px) {
  .design_pr-004 .newsList .newsItem .item:hover .Img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-filter: brightness(80%);
            filter: brightness(80%);
  }
  .design_pr-004 .newsList .newsItem .item:hover .Txt .title a {
    color: #78c6e0;
  }
}
.design_pr-004 .newsList .newsItem .item .Img {
  overflow: hidden;
}
.design_pr-004 .newsList .newsItem .item .Img img {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.design_pr-004 .newsList .newsItem .Txt {
  padding: 13px 0 10px;
}
.design_pr-004 .newsList .newsItem .Txt .title {
  font-size: 26px;
  text-align: center;
  font-family: "Noto Serif TC", serif;
}

.newsIns {
  padding: 64px 0;
}