@charset "UTF-8";
.container {
  max-width: 1300px;
  margin: 0 15vw; }

.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 27px 0;
  border-bottom: 1px solid #D9D9D9;
  z-index: 0; }
  .news:after {
    content: '';
    width: 0;
    height: 100%;
    z-index: -1;
    background-color: #F5F5F5;
    opacity: 0;
    position: absolute;
    left: -15vw;
    top: 0;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s; }
  .news:hover::after {
    width: calc(100% + 40vw);
    opacity: 1; }
  .news .date {
    min-width: 105px;
    font-family: 'Montserrat';
    font-size: fz-2;
    font-weight: 300;
    color: #49ABD0;
    margin-right: 30px; }
  .news .news_photo {
    min-width: 200px;
    max-width: 200px;
    height: 150px;
    overflow: hidden;
    margin-right: 24px; }
  .news .title {
    font-weight: 400; }
  .news .text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }
  .news .content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    margin-top: 10px;
    height: 6em;
     }
    .news .content:after {
      content: '... (閱讀全內文)'; }
  .news .link_arrow {
    margin-top: 40px;
    margin-left: 68px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
  .news:hover > .link_arrow {
    -webkit-transform: translateX(8px);
    -ms-transform: translateX(8px);
    transform: translateX(8px); }

@media (max-width: 430px) {
  .container {
    margin: 0 28px; }
  .news {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 36px;
    padding-bottom: 17px; }
    .news .date {
      margin-bottom: 7px; }
    .news_photo {
      min-width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      display: block;
      margin: 0 auto 18px; }
    .news .link_arrow {
      display: none; } }
