@charset "UTF-8";
/*
    自定義在最下面
*/
/* Font Weight */
/* Width */
/* Height */
/* Display */
/* Margin */
/* Padding */
/* Cursor */
/* Background Color */
/* Color */
/* Text Limit */
/* 毛玻璃 */
/******************  自定義  ******************/
/* Color */
/* Background Color */
/* Font Size */
/* Heading Desktop */
/* Heading Mobile */
/* Extra Large */
/* Large */
/* Medium */
/* Regular */
/* Small */
/* Small */
/* Button */
.banner-top {
  background: url("/images/news/desktop-banner.jpg") no-repeat center top;
}
.banner-top .decorate {
  background: url("/images/news/desktop-banner-dec.png") no-repeat center top;
}
@media (max-width: 576px) {
  .banner-top {
    background: url("/images/news/mobile-banner.jpg") no-repeat center top;
  }
  .banner-top .decorate {
    background: url("/images/news/mobile-banner-dec.png") no-repeat center top;
    background-size: cover;
  }
}

.news-list-wrap .news-card {
  background: var(--wc-50) !important;
  border: 1px solid var(--nc-100);
  border-radius: var(--spacing-8);
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.news-list-wrap .news-card .img-wrap {
  width: 100%;
  height: 176px;
  position: relative;
  background: var(--nc-300);
}
.news-list-wrap .news-card .img-wrap .img {
  background-size: cover !important;
  width: 100%;
  height: 100%;
}
.news-list-wrap .news-card .bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spacing-16);
  padding: var(--spacing-16);
}
.news-list-wrap .news-card .text-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
}
.news-list-wrap .news-card .text-wrap .title {
  font-size: var(--text-hm-h4) !important;
  line-height: var(--text-hm-h4--line-height);
  font-weight: bold;
  color: var(--pc-800) !important;
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-wrap .news-card .text-wrap .subtitle {
  font-size: var(--text-base) !important;
  line-height: var(--text-base--line-height);
  color: var(--nc-500) !important;
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-wrap .news-card .publish-time {
  color: var(--nc-500) !important;
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
}
.news-list-wrap .news-card .more {
  font-size: var(--text-base) !important;
  line-height: var(--text-base--line-height);
  color: var(--pc-500) !important;
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
  padding: var(--spacing-4) var(--spacing-16);
  cursor: pointer;
}
@media (max-width: 992px) {
  .news-list-wrap .news-card {
    max-width: 390px;
  }
}
@media (max-width: 576px) {
  .news-list-wrap .news-card {
    flex-direction: row;
  }
  .news-list-wrap .news-card .img-wrap {
    width: 120px;
    height: 120px;
  }
  .news-list-wrap .news-card .bottom {
    width: calc(100% - 120px);
  }
  .news-list-wrap .news-card .text-wrap > .title {
    font-size: var(--text-hm-h6) !important;
    line-height: var(--text-hm-h6--line-height);
    font-weight: bold;
    display: -webkit-box;
    word-break: break-all;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-list-wrap .news-card .text-wrap > .subtitle {
    display: none;
  }
}

.news-content-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
}
.news-content-wrap .title {
  font-size: var(--text-hd-h4) !important;
  line-height: var(--text-hd-h4--line-height);
  font-weight: bold;
  color: var(--pc-800) !important;
}
.news-content-wrap .publish-date {
  font-size: var(--text-base) !important;
  line-height: var(--text-base--line-height);
  color: var(--nc-500) !important;
  display: flex;
  gap: var(--spacing-8);
  align-items: center;
}
.news-content-wrap .content {
  font-size: var(--text-base) !important;
  line-height: var(--text-base--line-height);
}/*# sourceMappingURL=news.css.map */