﻿/* 整個內容方塊 */
.index成果分享10 {
}

    /* 內容方塊標題文字 (h2) */
    .index成果分享10 .blockTitle {
        padding: 0 0 0 1rem;
    }

        /* 內容方塊標題超連結 */
        .index成果分享10 .blockTitle a {
        }

/* 比賽容器 */
.index成果分享10 .competitionList
{
    padding : 0;
    margin : 0;
    border : none 0;
}

/*單一比賽*/
    .index成果分享10 .eachCompetition {
        border-bottom: solid 1px #dddddd;
        padding: 1rem;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .index成果分享10 .hasPic .thumbList {
        flex-grow: 0;
        flex-shrink: 0;
    }

    .index成果分享10 .noPic .thumbList {
        display: none;
    }

    /*圖片*/
    .index成果分享10 .themePic {
        max-width: 100%;
        height: auto;
    }

    /*右方*/
    .index成果分享10 .right {
        
        flex-grow : 1;
        flex-shrink : 1;
        padding-left : 2rem;
    }

    /*標題*/
    .index成果分享10 .heading {
        font-weight : 700;
        margin-bottom : 1rem;
    }

    /*所有獎項的容器*/
    .index成果分享10 .eachAward {
        
        padding-left : 1rem;
    }

    /*獎項名稱*/
    .index成果分享10 .award {
        font-weight : 600;
    }

    .index成果分享10 .allWinners {
        margin : 0.5em 0;
        padding-left : 1rem;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content : flex-start;
        align-items : flex-start;
        align-content : flex-start;
    }

    /*得獎人*/
    .index成果分享10 .winner {
        font-size: 0.8rem;
        
        padding : 5px 10px;
    }

@media (max-width: 480px) {
    /* 只顯示頭 5 個比賽 */
    .index成果分享10 .competitionList .eachCompetition
    {
        display : none;
    }
    .index成果分享10 .competitionList .eachCompetition:nth-child(-n+5)
    {
        display : block;
    }
    .index成果分享10 .right {
        padding-left: 0;
    }
}
@media (min-width: 481px) and (max-width: 767px) {
    /* 只顯示頭 6 個比賽 */
    .index成果分享10 .competitionList > .eachCompetition
    {
        display : none;
    }
    .index成果分享10 .competitionList .eachCompetition:nth-child(-n+6)
    {
        display : flex;
    }
    .index成果分享10 .hasPic .thumbList {
        flex-basis: 45%;
        max-width: 200px;
    }

    .index成果分享10 .hasPic .right {
        flex-basis: 55%;
    }
}
@media (min-width: 768px) and (max-width: 979px) {
    /* 只顯示頭 6 個比賽 */
    .index成果分享10 .competitionList > .eachCompetition
    {
        display : none;
    }
    .index成果分享10 .competitionList .eachCompetition:nth-child(-n+6)
    {
        display : flex;
    }
    .index成果分享10 .hasPic .thumbList {
        flex-basis: 30%;
        max-width: 200px;
    }

    .index成果分享10 .hasPic .right {
        flex-basis: 70%;
    }
}
@media (min-width: 980px) and (max-width:1199px) {
    /* 只顯示頭 8 個比賽 */
    .index成果分享10 .competitionList > .eachCompetition
    {
        display : none;
    }
    .index成果分享10 .competitionList .eachCompetition:nth-child(-n+8)
    {
        display : flex;
    }
    .index成果分享10 .hasPic .thumbList {
        flex-basis: 22%;
        max-width: 300px;
    }
    .index成果分享10 .hasPic .right {
        flex-basis: 78%;
    }
}
@media (min-width: 1200px) and (max-width:1919px) {
    .index成果分享10 .hasPic .thumbList {
        flex-basis: 20%;
        max-width: 400px;
    }

    .index成果分享10 .hasPic .right {
        flex-basis: 80%;
    }
}

@media (min-width: 1920px) {
    .index成果分享10 .hasPic .thumbList {
        flex-basis: 20%;
        max-width: 400px;
    }

    .index成果分享10 .hasPic .right {
        flex-basis: 80%;
    }
}



