﻿/* 整個內容方塊 */
.index最新消息9 {
    /*height : 300px;   --- if simpleBar (i.e. scroll bar) is set on the whole block, change the number.*/
    
    
    --date-bg-color: #0026ff;
    --date-font-color: #FFFFFF;
}

    /* 內容方塊標題 */
    .index最新消息9 .blockTitle {
        text-align: center;
    }

        .index最新消息9 .blockTitle h2 {
        }

        /* 內容方塊標題超連結 */
        .index最新消息9 .blockTitle a {
        }

    /* 最新消息容器，每個最新消息都放在裡面 */
    .index最新消息9 .loopElementList {
        height : 600px;   /*--- if simpleBar (i.e. scroll bar) is set on the content, change the number.*/
    }

    .index最新消息9 .elementContainer {
        padding: var(--r-container-padding, 1em);
    }

    /*單一最新消息*/
    .index最新消息9 .eachNews {
        
        
    }

    .index最新消息9 .eachNews:nth-child(odd)
    {
        background-color : rgba(255,255,255,0.2);
    }

    .index最新消息9 .innerShell {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
        border-bottom: var(--r-el-border-bottom, solid 1px #dddddd);
        padding: var(--r-el-padding, 1rem);
        position: relative;
        overflow: hidden;
    }

    .index最新消息9 .date {
        aspect-ratio: 1 / 1;
        width: 4em;
        padding: 10px 0;
        border-radius: 5px;
        background-color: var(--date-bg-color);
        background: linear-gradient(135deg, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%);
        color: var(--date-font-color);
        text-align: center;
        flex-shrink: 0;
        margin: 0 2em 0 0;
    }

    .index最新消息9 .dayOfMonth {
        font-size: 1.5em;
        line-height: 1em;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-style: italic;
    }

    .index最新消息9 .month {
        font-size: 0.8em;
    }

    .index最新消息9 .text {
    }

    .index最新消息9 .heading {
        font-weight: var(--r-heading-font-weight, 700);
        font-size: var(--r-heading-font-size, 1.2em);
    }

    .index最新消息9 .details {
        line-height: 1.5;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        height: calc(1.5em * 3);
    }

    /*小圖示*/
    .index最新消息9 .newIcon {
    }

    .index最新消息9 .details * {
        max-width: 100%;
    }

    /*無詳情*/
    .index最新消息9 .details:empty {
        display: none;
    }

    .index最新消息9 .link {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 1;
    }

    .index最新消息9 .more {
        text-align: right;
        font-weight: 700;
        font-size: 1.5em;
        margin-right: 2em;
        font-style: italic;
        line-height: 2;
        color : brown;
    }

@media (max-width:480px) {
    .index最新消息9 .innerShell {
        flex-wrap: wrap;
    }

    .index最新消息9 .date {
        aspect-ratio: auto;
        width: auto;
        padding: 5px 10px;
    }

    .index最新消息9 .dayOfMonth {
        display: inline-block;
        font-size: 1em;
    }
