﻿/* 整個內容方塊 */
.index比賽獲獎10 {
}

    /* 內容方塊標題文字 (h2) */
    .index比賽獲獎10 .blockTitle {
        padding: 0 0 0 1rem;
        text-align : center;
    }

        /* 內容方塊標題超連結 */
        .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: space-between;
    align-items : flex-start;
}

    /*日期*/
    .index比賽獲獎10 .date {
        font-size: 0.8rem;
        flex-grow : 0;
        flex-shrink : 0;
        width : 7rem;
    }

    /*標題*/
    .index比賽獲獎10 .heading {
        font-weight : 700;
        display : block;
        flex-grow : 1;
        flex-shrink : 1;
        padding-left : 2rem;
    }

@media (max-width: 480px) {
    /* 只顯示頭 5 個比賽 */
    .index比賽獲獎10 .competitionList .eachCompetition
    {
        display : none;
    }
    .index比賽獲獎10 .competitionList .eachCompetition:nth-child(-n+5)
    {
        display : flex;
    }
}
@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;
    }
}
@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;
    }
}
@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;
    }
}
@media (min-width: 1200px) and (max-width:1919px) {
}

@media (min-width: 1920px) {
}


