@charset "UTF-8";
.news-overview {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.news-overview .tab-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 1rem;
}
.news-overview .tab-wrapper .dropdown-btn {
  display: none;
  align-items: start;
  width: 32px;
  height: 100%;
  background: var(--white-100);
  z-index: 5;
}
.news-overview .tab-wrapper .dropdown-btn .button {
  height: 24px;
  margin-top: 4px;
}
.news-overview .tab-wrapper .dropdown-btn.active .button.style-2.filled {
  background: var(--white-100);
  outline: 1px solid var(--c-01-100);
  outline-offset: -1px;
}
.news-overview .tab-wrapper .dropdown-btn.active .button.style-2.filled .icon-control {
  color: var(--c-01-100);
  transform: rotateZ(180deg);
}
.news-overview .tab-wrapper .tab-zone {
  width: 100%;
  height: 60px;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.news-overview .tab-wrapper .tab-zone .tab-container {
  position: relative;
  display: flex;
  gap: 0rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
.news-overview .tab-wrapper .tab-zone .tab-container .tab-btn {
  padding: 0rem 0 1rem 0;
}
.news-overview .tab-wrapper .tab-zone .tab-container .tab-btn .year {
  display: block;
  position: relative;
  font-size: 18px;
  color: var(--font-color-content);
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 1rem;
  height: 100%;
}
.news-overview .tab-wrapper .tab-zone .tab-container .tab-btn .year::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  border-bottom: 2px solid var(--c-01-100);
  transition: all 0.25s linear;
}
.news-overview .tab-wrapper .tab-zone .tab-container .tab-btn:hover .year {
  color: var(--c-01-100);
}
.news-overview .tab-wrapper .tab-zone .tab-container .tab-btn:hover .year::after {
  width: 100%;
}
.news-overview .tab-wrapper .tab-zone .tab-container .tab-btn.active .year {
  color: var(--c-01-100);
}
.news-overview .tab-wrapper .tab-zone .tab-container .tab-btn.active .year::after {
  width: 100%;
}
.news-overview .tab-wrapper .tab-zone.active {
  height: -moz-fit-content;
  height: fit-content;
  align-items: flex-start;
}
.news-overview .tab-wrapper .tab-zone.active .tab-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  grid-template-rows: auto;
  width: 100%;
  row-gap: 0.5rem;
}
.news-overview .tab-wrapper .tab-zone::-webkit-scrollbar-track {
  background: transparent;
  /* 軌道顏色 */
  border-radius: 10px;
}
.news-overview .tab-wrapper .tab-zone::-webkit-scrollbar {
  height: 6px;
  width: 0px;
}
.news-overview .tab-wrapper .tab-zone::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
}
.news-overview .tab-wrapper .tab-zone::-webkit-scrollbar-thumb:hover {
  background: var(--c-01-100);
}
.news-overview .news-list {
  width: 100%;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 2.5rem;
}
.news-overview .news-list.active {
  display: grid;
}
.news-overview .news-list .item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-bottom: 1px solid var(--gray-02);
}
.news-overview .news-list .item .svg-box.-triangle-2 {
  transform: translateY(-8px);
}
.news-overview .news-list .zone {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 1.25rem;
  height: calc(135px + 2.5rem);
  width: 100%;
}
.news-overview .news-list .zone .img-container {
  width: 135px;
  height: 135px;
}
.news-overview .news-list .zone .img-container .img-control {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-overview .news-list .zone .container {
  min-width: 135px;
  max-height: 150px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1rem;
}
.news-overview .news-list .zone .container .title-box {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 24px 1fr;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.news-overview .news-list .zone .container .title-box::after {
  content: "";
  width: 100%;
  height: 28px;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 0;
}
.news-overview .news-list .zone .container .title {
  height: 100%;
  font-size: 1.175rem;
  line-height: 120%;
  font-weight: 600;
}
.news-overview .news-list .zone .container .date {
  font-size: 1rem;
  font-weight: 400;
  color: var(--font-color-content);
}

@media screen and (max-width: 1100px) {
  .news-overview .tab-wrapper .dropdown-btn {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .news-overview .news-list {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=news-overview.css.map */