
/* pc端中间部分 */
.pc-main{
    width: 100%;
    height: calc(100vh - 30rem);
    overflow: auto;
    box-sizing: border-box;
    position: relative;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.pc-main .pc-date{
    width: 50%;
    height: 100%;
    margin: 0 auto;
}
.pc-main .pc-date table{
    width: 100%;
    height: 100%;
}
.pc-main .pc-date table thead{
    width: 100%;
    height: 3.5rem;
    background-color: teal;
    opacity: 0.7;
}
.pc-main .pc-date table thead tr th{
    border: 1px solid white;
    font-size: 1rem;
    font-weight: bold;
}
.pc-main .pc-date table tbody{
    width: 100%;
    height:100%;
}
.pc-main .pc-date table tbody tr{
    width: 100%;
    height:0.6rem;
}
.pc-main .pc-date table tbody tr th{
    text-align: center;
    border: 1px solid rgb(255, 255, 255);
}
.pc-main .pc-date table tbody tr th a{
    cursor: pointer;
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #000000;
    background-color: rgb(255, 255, 255);
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 1.5rem;
    font-weight: bold;
    
}
.pc-main .pc-date table tbody tr th a:hover{
    color: #ffffff;
    background-color: rgb(0, 0, 0);
}
/* 移动端中间部分 */
.mob-main{
    box-sizing: border-box;
    width: 90%;
    height: calc(100vh - 19rem);
    overflow: auto;
    position: relative;
    margin: auto;
}
.mob-main .mob-date{
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.mob-main .mob-date table{
    width: 100%;
    height: 100%;
}
.mob-main .mob-date table thead{
    width: 100%;
    height: 2rem;
    background-color: teal;
    opacity: 0.7;
}
.mob-main .mob-date table thead tr th{
    border: 1px solid white;
    font-size: 1.2rem;
    font-weight: bold;
}
.mob-main .mob-date table tbody{
    width: 100%;
    height:100%;
}
.mob-main .mob-date table tbody tr th{
    text-align: center;
    border: 1px solid rgb(255, 255, 255);
}
.mob-main .mob-date table tbody tr th a{
    cursor: pointer;
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #000000;
    background-color: rgb(255, 255, 255);
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 0.8rem;
    
}
.mob-main .mob-date table tbody tr th a:hover{
    color: #ffffff;
    background-color: rgb(0, 0, 0);
}