@charset "UTF-8";
/* CSS Document */
/*****列表*****/
.newsItem {
  width: 100%;
}
.newsItem .item {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #0F4284;
}
.newsItem .item .Txt {
  width: calc(100% - 100px);
}
@media (max-width: 767px) {
  .newsItem .item .Txt {
    width: 100%;
  }
}
.newsItem .item .btnMore {
  width: 100px;
}
@media (max-width: 767px) {
  .newsItem .item .btnMore {
    margin: 10px 8px 0;
  }
}

/*****內頁*****/