﻿/*
    <div.paragraphContent>
        <a.eachActivity_style11>
            <div.imgList>
                <img.pic><img.pic>
            </div>
            <div.caption>
                Caption
            </div>
        </a>
    </div>
*/

.paragraphContent {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content : space-evenly;
    align-items:stretch;
}

.eachActivity_style11 {
    box-sizing: border-box;
    display: block;
    position: relative;
    margin: 0.5rem;
    border: solid 1px #dedede;
    background-color: #FFFFFF;
}

    .eachActivity_style11 .imgList {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: stretch;
        overflow:hidden;
    }

        .eachActivity_style11 .imgList .pic {
            margin: 0;
            max-width: 100%;
        }

    .eachActivity_style11 .caption {
        box-sizing: border-box;
        line-height: 1.5rem;
        color: #000000;
        background-color: #FFFFFF;
        padding: 10px;
        max-width: 100%;
    }

        .eachActivity_style11 .caption a {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            /*-webkit-line-clamp: 2;*/
            -webkit-box-orient: vertical;
        }

