﻿
/*
<div.paragraphContent>
    <div.eachActivity_style07>
         <div.caption>
            <a>Caption</a>
         </div>
         <div.imgList>
            <a><img.pic> <img.pic></a>   .... width, height in px
         </div>
     </div>
</div>
*/

/* 這是全部活動的外圍 */
.paragraphContent {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap : wrap;
    justify-content : space-between;
    align-items : stretch;
}

.eachActivity_style07 {
    box-sizing: border-box;
    background-color: #FFFFFF;
    border-radius: 5px;
    border: none 0;
    padding: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .eachActivity_style07 .caption {
        font-weight: bolder;
        text-align: center;
        max-width: 100%;
    }

        .eachActivity_style07 .caption a {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            /*-webkit-line-clamp: 2;*/
            -webkit-box-orient: vertical;
        }

        .eachActivity_style07 .imgList {
            display: flex;
            flex-grow: 0;
            flex-shrink: 0;
        }

            .eachActivity_style07 .imgList .pic {
                margin: 0.5rem;
                max-width: 100%;
            }

    

