/* 賽程按鈕列 */

#schedule{
    padding: 60px 0;
}
@media (max-width:767px) {
    #schedule{
        padding: 24px 0;
        margin-bottom: 48px;
    }
    
}
#scheduleBox{
    overflow: hidden;
    min-height: 800px;
}
#scheduleBox .btnList{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    background-color: #fff;
}
#scheduleBox .btnList .leftArraw,
#scheduleBox .btnList .rightArraw
{
    width: 38px;
    height: 38px;
    aspect-ratio: 1/1;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}
#scheduleBox .btnList ul::-webkit-scrollbar {
    width: 0;
    height: 0;
}
#scheduleBox .btnList ul{
    width: max-content;
    height: 52px;
    border-bottom: 1px #A0A0A0 solid;
    overflow: hidden;
    overflow-x: scroll;
    transition: 0;
    white-space:nowrap;
    text-align: center;
    padding: 0 30px;
}
#scheduleBox .btnList li{
    display: inline-block;
    width: max-content;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.02em;   
    border-bottom: 3px rgb(7, 16, 60 ,0) solid; 
    color:#A0A0A0;
    padding: 0 40px;
    position: relative;    
    transition: 0;
}
#scheduleBox .btnList li.act,
#scheduleBox .btnList li:hover{
    border-bottom: 3px #07103C solid;
    color:#07103C;
    font-weight: 700;
}
#scheduleBox .btnList li.act a{
    color:#07103C;
}
@media (max-width:1023px) {
    #scheduleBox .btnList li{
        font-size: 18px;
        padding: 0 15px;
    }
}
@media (max-width:767px) {
    #scheduleBox .btnList{
        margin: 0;
    }
    #scheduleBox .btnList ul{
        height: 47px;
        margin: 0;
        padding: 0;
    }
    #scheduleBox .btnList .leftArraw,
    #scheduleBox .btnList .rightArraw {
        display: none;
    }
}
@media (max-width:413px) {
    #scheduleBox .btnList li {
        font-size: 18px;
        padding: 0 12px;
    }
}

#schedule .title{
    margin-bottom: 24px;
}
#schedule .change{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 40px;
}
#schedule .change .btn{
    width: 15%;
    padding: 4px 24px;
    border-radius: 24px;
    border: 2px solid #07103C;
    background-color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}
#schedule .change .btn.act{
    background-color: #07103C;
    color: #fff;
}
/* 輪播 */
#scheduleBox .btnList.owl-carousel{
    position: unset;
}
#scheduleBox .btnList .owl-nav {
    height: 0;
}
#scheduleBox .btnList.owl-carousel .owl-dots {
    display: none;
}
#scheduleBox .btnList .owl-nav .owl-prev,
#scheduleBox .btnList .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 0;
    opacity: 1;
    border: none;
    cursor: pointer;
    padding:0;
    z-index: 2;
}
#scheduleBox .btnList .owl-nav .owl-next {
    right: 0;
    background: url(../images/right-icon-w.svg) center center no-repeat;
    background-color: #000;
    background-size: 100%;
}
#scheduleBox .btnList .owl-nav .owl-prev {
    left: 0;
    background: url(../images/left-icon-w.svg) center center no-repeat;
    background-color: #000;
}
#scheduleBox .btnList .owl-nav .owl-next.disabled,
#scheduleBox .btnList .owl-nav .owl-prev.disabled{
    background-color: #C0C0C0;
}

@media (max-width:1023px) {
    #schedule .change .btn{
        width: 20%;
    }
}
@media (max-width:767px) {
    #schedule .change{
        margin-bottom: 48px;
    }
    #schedule .change .btn{
        width: 28%;
    }
    #scheduleBox .btnList.owl-carousel{
        position: relative;
    }
    #scheduleBox .btnList .owl-nav .owl-prev,
    #scheduleBox .btnList .owl-nav .owl-next {
        width: 35px;
        height: 35px;
    }
}
/* 輪播 ed*/

/* 賽程按鈕列 ed*/

/* 賽程列表 */
#schedule .list{
    padding: 0 16px;
}
#schedule .list li{
    padding-top: 40px;
}
#schedule .list .box{
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 2px 20px 0 #EEE;
    border: 1px solid #E5E5EC;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
#schedule .list .box .dateBox{
    width: 20%;
}
#schedule .list .box .dateBox .round{
    display: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.56px;
    border-radius: 50px;
    border: 1px solid #A0A0A0;
    padding: 2px 12px;
    width: max-content;
    margin: 0 auto;
    color: #A0A0A0;
    text-align: center;
    margin-bottom: 14px;
}
#schedule .list .box .dateBox .period{
    font-family: "Roboto Flex";
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.4px;
}
#schedule .list .box .dateBox .time{
    font-family: "Roboto Flex";
    font-size: 44px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 2.2px;
}
#schedule .list .box .battle{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    column-gap: 16px;
}
#schedule .list .box .battle .scoreBox .score{
    font-family: "Roboto Flex";
    font-size: 56px;
    font-weight: 700;
    line-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
#schedule .list .box .battle .scoreBox .score .vs {
    font-family: "Roboto Flex";
    font-size: 52px;
    font-weight: 700;
    line-height: 60px;
    color: #C0C0C0;
    letter-spacing: 10px;
    text-align: center;
}
#schedule .list .box .battle .flag{
    width: 100px;
    overflow: hidden;
    text-align: center;
    margin: 0 auto 8px;
    border: 1.25px solid #A0A0A0;
    line-height: 0;
}
#schedule .list .box .battle .name{
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.4px;
    text-align: center;
}
#schedule .list .box .placeBox{
    width: 20%;
    text-align: right;
}
#schedule .list .box .place{
    display: flex;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0.64px;
    align-items: center;
    height: 80px;
    justify-content: flex-end;
}
#schedule .list .box .round{
    width: max-content;
    border: 1px solid #A0A0A0;
    color: #A0A0A0;
    padding: 2px 12px 3px;
    margin: 0 0 12px auto;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.56px;
    border-radius: 60px;
}
#schedule .list .box .round.mo{
    margin: 0 auto 12px;
}

/* 台北項目 */
#schedule .list .tpi .tpiDate{
    width: 100%;
    font-family: "Roboto Flex";
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
    margin-bottom: 16px;
}
#schedule .list .tpi{
    padding:24px 0 40px;
}
#schedule .list .tpiBox:last-child{
    margin-bottom: 0px;
}
#schedule .list .tpiBox{
    margin-bottom: 80px;
}
#schedule .list .tpiBox:last-child{
    margin-bottom: 0px;
}
/* 台北項目 ed*/

@media (max-width:1023px) {
    #schedule .list li{
        padding-top: 24px;
    }
    #schedule .list .box {
        padding: 35px;
    }
    #schedule .list .box .dateBox .period {
        font-size: 16px;
    }
    #schedule .list .box .dateBox .time {
        font-size: 36px;
    }
    #schedule .list .box .battle .scoreBox .score,
    #schedule .list .box .battle .scoreBox .score .vs{
        font-size: 40px;
    }
    #schedule .list .box .battle .name {
        font-size: 16px;
    }
    #schedule .list .box .battle .flag{
        width: 80px;
    }
}
@media (max-width:767px) {
    #schedule .list .tpi .tpiDate{
        margin-bottom: 24px;
    }
    #schedule .list .tpi .tpiDate{
        font-size: 26px;
        line-height: 30px;
    }
    #schedule .list .box .battle .flag {
        width: 65px;
    }
    #schedule .list .box .battle .scoreBox .score,
    #schedule .list .box .battle .scoreBox .score .vs{
        font-size: 40px;
    }
    #schedule .list .box .dateBox .timeBox1{
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 2px;
    }
    #schedule .list .box .dateBox .period,
    #schedule .list .box .dateBox .time
    {
        font-size: 24px;
        color: #126BF0;
    }
    #schedule .list .box .dateBox .round{
        display: block;
    }
    #schedule .list .box{
        padding: 32px 20px;
        display: block;
    }
    #schedule .list .box .dateBox,
    #schedule .list .box .battle{
        width: 100%;
    }
    #schedule .list .box .dateBox{
        margin-bottom: 28px;
    }
    #schedule .list .placeBox{
        display: none;
    }
}
@media (max-width:374px) {
    #schedule .list .box .battle .flag {
        width: 60px;
    }
    #schedule .list .box .battle .scoreBox .score,
    #schedule .list .box .battle .scoreBox .score .vs{
        font-size: 36px;
    }
}
@media (max-width:359px) {
    #schedule .list .box .battle .name {
        font-size: 14px;
    }
    #schedule .list .box .battle .flag {
        width: 60px;
    }
    #schedule .list .box .battle .scoreBox .score,
    #schedule .list .box .battle .scoreBox .score .vs{
        font-size: 24px;
    }
    #schedule .list .box {
        padding: 24px 16px;
    }
}
/* 賽程列表 ed*/