@charset "utf-8";
/* --.newsList：首頁消息，只有文字顯示 */
.newsList {
    width: 100%;
    max-width: 1200px;
    padding: 3rem 3.25rem;
    border-radius: var(--bs-border-radius);
    background-color: #fff;
    box-shadow: 0 9px 60px 0 var(--bs-border-color);
    margin: 0 auto;
}
.newsList .item {
    padding-bottom: 1.25rem;
    margin-bottom: 1.65rem;
    border-bottom: 1px dashed var(--bs-gray-500);
}
.newsList .item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom:none;
}
.newsList .item a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
.newsList .item a > div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.newsList .category {
    display: inline-flex;
    background-color: var(--bs-gray-400);
    color: #fff;
    border-radius: var(--bs-border-radius);
    padding: 0.375rem 1rem 0.35rem;
    font-size: 0.85rem;
    margin: 0 1rem 0 0;
    white-space: pre;
}
.newsList .date {
    display: inline-flex;
    font-family: sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--bs-gray-400);
    padding: 0.215rem 0 0;
    margin: 0 1.5rem 0 0;
    white-space: pre;
}
.newsList .date > span {}
.newsList .item:hover .IMG {
    box-shadow: 0 0 0 3px var(--transparentW3), 0px 5px 13px 4px rgb(0 0 0 / 8%);
}
.newsList .TXT h4 {font-size: 1rem;}

@media (min-width: 768px) {
.newsList .item {
    padding-bottom: 0.75rem;
    margin-bottom: 0.85rem;
}
.newsList .item a {
    align-items: center;
    flex-direction: row;
}
.newsList .item a > div {
margin-bottom: 0;
}
.newsList .TXT h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1;
}
}

/* --#txt-list.news1：內頁所有消息列表文字顯示 */
#txt-list.news1 .newsList {
    max-width: initial;
    padding: 0 0 2rem;
    background-color: #fff;
    box-shadow: none;
}

@media (max-width: 991px) {
#txt-list.news1 .newsList {
    padding: 0 0 1.5rem;
}
}