* {
    margin: 0;
    padding: 0;
}

html,body,.containner {
    width: 100%;
    height: 100%;
}
.banner-box {
    width: 100%;
}
.banner-box img {
    width: 100%;
}
.tabs {
    margin: 0 auto;
    transition: all .3s linear;
    overflow: hidden;
}
.direction {
    width: 40px;
    cursor: pointer;
}
.direction img {
    width: 100%;
    cursor: pointer;
}
.bread {
    color: #7d7d7d;
    padding-left: 15px;
    box-sizing: border-box;
    margin-top: 15px;
    overflow: hidden;
}
.bread a {
    color: #000000;
}
.title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    color: #1f325f;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    padding: 40px 20px 30px;
    box-sizing: border-box;
}
.tabs-containner {
    width: 80%;
    margin: 0 auto;
}
.tabs .tabs-item {
    font-size: 18px;
    border: 3px solid var(--table-theme-color);
    padding: 8px 20px;
    margin-left: 20px;
    cursor: pointer;
    transition: all .3s linear;
    flex: 1;
    text-align: center;
    box-sizing: border-box;
}
.tabs .tabs-item:first-child {
    margin-left: 0;
}
.tabs .tabs-item:hover {
    background-color: var(--table-theme-color);
    color: #FFFFFF;
}
.tabs .tabs-item-active {
    background-color: var(--table-theme-color);
    color: #FFFFFF;
}

.program-content {
    width: 100%;
    margin-top: 40px;
    /* overflow: auto; */
    animation: all .3 linear;
    height: 1000px;
    position: relative;
    overflow-x: auto;
    overflow-y: auto;
    box-sizing: border-box;
    user-select: none;
}
table {
    border: 1px solid #FFFFFF;
    min-width: 100%;
    border-collapse: collapse;
}
table tr {
    border: 1px solid #FFFFFF;
}
table tr th {
    border: 1px solid #FFFFFF;
    background-color: var(--table-theme-color);
    color: #FFFFFF;
    width: 200px;
    min-width: 200px;
    user-select: none;
    height: 110px;
}
.full-style th {
    width: 100%;
}

table tr th:first-child {
    width: 100px;
    min-width: 100px;
}
table tr td {
    border: 1px solid #FFFFFF;
    background: var(--table-theme-shadow-color);
    color: #000000;
    box-sizing: border-box;
    user-select: none;
    overflow: hidden;
}

table tr td:first-child {
    background-color: #FFFFFF;
    color: #333333;
    text-align: center;
    border-bottom: 1px solid var(--table-theme-shadow-color);
}
table tr td .hall-item {
    box-sizing: border-box;
    height: 50%;
    cursor: pointer;
    padding: 20px;
}
table tr td .hall-title {
    position: relative;
    padding: 10px;
    box-sizing: border-box;
}
table tr td .hall-title a {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
table tr td .hall-title::before {
    content: '';
    position: absolute;
    top: -500px;
    right: 0;
    width: 1px;
    height: 1000px;
    background: #FFFFFF;
}
table tr td div .hall-title:last-child:before {
    content: '';
    display: none;
}
table tr td .hall-title:hover a {
    color: var(--table-theme-color) !important;
}
.times-content {
    height: 55px;
    box-sizing: border-box;
}
.times-content .times-item {
    border-right: 1px solid #ffffff;
    height: 55px;
}
.times-content .times-item:last-child {
    border-right: none;
}
table tr td .hall-title:last-child {
    border-bottom: none;
}

a {
    color: #FFFFFF;
}
.program-detail {
    padding: 5px 8px;
    border-radius: 20px;
    margin-top: 20px;
    background-color: var(--table-theme-detail-color);
    display: inline-block;
    cursor: pointer;
    transition: all .3s linear;
    user-select: none;
}
.program-detail:hover {
    background-color: var(--table-theme-color);
}

.tabs-content-item {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    min-width: 100%;
}
.tabs-content-active {
    display: block;
}


@media screen and (max-width:768px) {
    .tabs {
        padding: 0 10px;
        box-sizing: border-box;
        flex-wrap: wrap;
    }
    .tabs .tabs-item {
        font-size: 14px;
        border: 3px solid var(--theme-color);
        padding: 8px 10px;
        margin-left: 0;
        cursor: pointer;
        transition: all .3s linear;
        width: 33.33% !important;
        flex: none;
        text-align: center;
    }
    .program-content  {
        overflow: auto;
    }
}