/* 匯入共用最新消息模組.css */
@import url("../style_news/style_news.css");

.news_content {
    gap: .75em; /*12px*/
}

.news_title{

    width: 90% ; /* 自由設定 */
    overflow: hidden;
    text-overflow: ellipsis; /* 超出行數...替代 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1 ; /* 限制行數 */
    box-sizing:border-box;

}

.news_list_item_right {
    width: 100%;
    padding: 1.25em 0 2.5em 0; /* 20px 40px */
}