.banner{
    background: linear-gradient(98deg, #A47052 1%, #D5A971 101%), #F6F6F6;
    width: 100%;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
    min-height: 246px;
    position: relative;
}
.banner::before{
    position: absolute;
    content: '';
    inset: 0;
    background: url(../img/tableBanner.png) no-repeat;
    background-size: 50% auto;
    background-position: 0px 0px;
}
.banner .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;   
    padding-top: 50px;
}
.banner .wrap>div:first-of-type{
    font-size: 48px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0em;
    color: #FFFFFF;
    position: relative;
}
.banner .wrap>div:first-of-type::before{
    position: absolute;
    content: '';
    top: -20px;
    width: 56px;
    height: 8px;
    background: #FFFFFF;
}
.banner .wrap>div:last-of-type{
    font-size: 24px;
    font-weight: 600;
    line-height: 44px;
    text-align: right;
    text-transform: uppercase;
    color: #E2E2E2;
    display: flex;
    align-items: center;
    gap: 12px;
}
.banner .wrap>div:last-of-type>img{
    width: 23px;
    height: 16px;
}
.table{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 64px 0;
}
.table table{
    border-color: #D8D8D8;
}
.table thead{
    background: #A47052;
    color: #ffffff;
}
.table .title {
    width: 466px;
    height: 56px;
    font-weight: normal;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    color: #FFFFFF;
}
.table .date.active{
    background-color: #A77454;
    border: 2px solid #A77454;
    color: #ffffff;
    font-weight: bold;
}
.table .date>span{
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
}
.table .date>span:last-of-type{
    font-size: 18px;
    line-height: 14px;
    text-align: center;
    margin-top: 6px;
}
.table tbody td{
    padding: 10px 10px;
    text-align: center;
}
.table tbody td a{
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0em;
    color: #3D62D9;
}
.table tbody td a:hover{
    text-decoration: underline;
}
.table tbody tr:nth-child(even) td:nth-child(odd){
    background-color: #EAEAEA;
}
.table tbody tr:nth-child(even) td:nth-child(even){
    background-color: #F5F5F5;
}
.table tbody tr:nth-child(odd) td:nth-child(odd){
    background-color: #F5F5F5;
}
.table tbody tr:nth-child(odd) td:nth-child(even){
    background-color: #EAEAEA;
}