﻿.broadcast .main {
    padding: 42px 0px 40px;
    display: flex;
    position: relative;
    background-color: #EEF4F6;
}

    .broadcast .main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 99vw;
        height: 100%;
        background: inherit;
        z-index: -1;
    }

    .broadcast .main .video-wrapper {
        width: 65.62%;
        margin-right: 16px;
    }

        .broadcast .main .video-wrapper .wrap {
            background-color: transparent;
            position: relative;
            overflow: hidden;
            height: 0px;
            padding: 0px 0px 56.25%;
            border-radius: 8px;
        }

        .broadcast .main .video-wrapper .thumb-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

    .broadcast .main .video-list {
        flex: 1;
        display: flex;
        flex-direction: column;
        position: relative;
    }

        .broadcast .main .video-list::before {
            z-index: 1;
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2rem;
            background-image: linear-gradient(rgba(238, 244, 246, 0) 0%, rgba(238, 244, 246, 1) 100%);
        }

        .broadcast .main .video-list:hover::before {
            right: 14px;
        }

        .broadcast .main .video-list .header {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
        }

            .broadcast .main .video-list .header .icon {
                border: 1px solid #BFC6C9;
                border-radius: 50%;
                height: 20px;
                width: 20px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .broadcast .main .video-list .header .date {
                font-family: Source Serif;
                font-weight: 700;
                font-size: 20px;
                line-height: 25px;
                color: var(--color-primary);
                margin-left: 8px;
            }

        .broadcast .main .video-list .list {
            overflow-y: auto;
            max-height: 435px;
        }

            .broadcast .main .video-list .list::-webkit-scrollbar {
                width: 0px;
                background-color: #F8F8F9;
            }

            .broadcast .main .video-list .list:hover::-webkit-scrollbar {
                width: 14px;
                background-color: #F8F8F9;
            }

            .broadcast .main .video-list .list::-webkit-scrollbar-thumb {
                width: 6px;
                border-radius: 8px;
                background-color: #656C6F;
                border: 4px solid #F8F8F9;
            }

            .broadcast .main .video-list .list > * {
                flex-direction: row;
            }

                .broadcast .main .video-list .list > *:nth-last-child(n+2) {
                    --space: 20px;
                    margin-bottom: var(--space);
                    padding-bottom: var(--space);
                    border-bottom: 1px solid #BFC6C9;
                }

                .broadcast .main .video-list .list > * .thumb {
                    width: 36%;
                    margin-right: 12px;
                    margin-bottom: 0px;
                    min-width: 160px;
                }

                .broadcast .main .video-list .list > * .info-wrapper {
                    flex: 1;
                }

                    .broadcast .main .video-list .list > * .info-wrapper .story-category {
                        font-family: Roboto Condensed;
                        font-weight: 700;
                        font-size: 14px;
                        line-height: 20px;
                        color: var(--color-primary);
                        margin-bottom: 4px;
                    }

                    .broadcast .main .video-list .list > * .info-wrapper .title {
                        font-size: 18px;
                        line-height: 23px;
                    }

.broadcast .most-view {
    padding: 32px 0;
    border-bottom: 1px solid #BFC6C9;
}

.broadcast .block-header {
    margin-bottom: 20px;
}

    .broadcast .block-header > * {
        display: flex;
        align-items: center;
        width: fit-content;
    }

    .broadcast .block-header .icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 20px;
        height: 20px;
        border: 1px solid #BFC6C9;
        border-radius: 50%;
    }

    .broadcast .block-header .title {
        font-family: Source Serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 30px;
        color: var(--color-primary);
        margin-right: 8px;
    }

.broadcast .most-view .list {
    display: flex;
}

    .broadcast .most-view .list > * {
        flex: 1;
    }

        .broadcast .most-view .list > *:nth-last-child(n+2) {
            margin-right: 16px;
            padding-right: 16px;
            border-right: 1px solid #BFC6C9;
        }

    .broadcast .most-view .list .thumb {
        margin-bottom: 12px;
    }

    .broadcast .most-view .list .post-time {
        font-family: Helvetica;
        font-size: 14px;
        line-height: 20px;
        color: #656C6F;
        margin-bottom: 4px;
    }

    .broadcast .most-view .list .title {
        font-size: 16px;
        line-height: 20px;
    }

.broadcast .category-wrap {
    padding: 40px 0px 32px;
    display: flex;
    flex-direction: column;
}

    .broadcast .category-wrap:nth-last-child(n+2) {
        border-bottom: 1px solid #BFC6C9;
    }

    .broadcast .category-wrap .btn {
        display: flex;
        margin: 0 auto;
        align-items: center;
        border: 1px solid var(--color-primary);
        border-radius: 4px;
        padding: 12px 16px;
    }

        .broadcast .category-wrap .btn .text {
            font-family: Source Serif;
            font-weight: 700;
            font-size: 16px;
            line-height: 20px;
            color: var(--color-primary);
            margin-left: 16px;
        }

    .broadcast .category-wrap .sub-category {
        padding: 32px 0;
    }

        .broadcast .category-wrap .sub-category .thumb .type {
            display: none;
        }

        .broadcast .category-wrap .sub-category:nth-last-child(n+2) {
            border-bottom: 1px solid #BFC6C9;
        }

        .broadcast .category-wrap .sub-category .list {
            display: flex;
        }

            .broadcast .category-wrap .sub-category .list > * {
                width: calc((100% - 64px) / 5);
            }

                .broadcast .category-wrap .sub-category .list > *:nth-last-child(n+2) {
                    margin-right: 16px;
                    padding-right: 16px;
                    border-right: 1px solid #BFC6C9;
                }

                .broadcast .category-wrap .sub-category .list > * .thumb {
                    margin-bottom: 12px;
                }

                .broadcast .category-wrap .sub-category .list > * .title {
                    font-size: 16px;
                    line-height: 20px;
                }

        .broadcast .category-wrap .sub-category.square .list > * {
            flex: 1;
            min-width: 141px;
        }

        .broadcast .category-wrap .sub-category.square .list.few-children > * {
            width: calc((100% - 64px) / 5);
            flex: unset;
        }

        .broadcast .category-wrap .sub-category.square .list .thumb-wrapper {
            padding: 0px 0px 100%;
        }

    .broadcast .category-wrap:last-child .sub-category:last-child {
        padding-bottom: 0px;
    }

.broadcast .mobile-info {
    display: none;
}

@media screen and (max-width: 1200px) {
    .video-overflow {
        overflow-y: auto;
        padding-bottom: 8px;
    }

    .broadcast .category-wrap .sub-category .list {
        flex-wrap: nowrap;
    }

        .broadcast .category-wrap .sub-category .list > * {
            width: 255px;
            flex: 1 0 255px;
        }

            .broadcast .category-wrap .sub-category .list > *:nth-last-child(n+2) {
                flex: 0 0 calc(255px + 16.8px);
                width: calc(255px + 16.8px);
            }

    .broadcast .category-wrap .sub-category.square .list > *,
    .broadcast .category-wrap .sub-category.square .list.few-children > * {
        flex: 1 0 255px;
        width: 255px;
    }

        .broadcast .category-wrap .sub-category.square .list.few-children > *:last-child {
            max-width: 255px;
        }

        .broadcast .category-wrap .sub-category.square .list > *:nth-last-child(n+2) {
            flex: 0 0 calc(255px + 16.8px);
            width: calc(255px + 16.8px);
        }
}

@media screen and (max-width: 996px) {
    .broadcast .main {
        flex-direction: column;
        background-color: #fff;
        padding: 0px;
        margin-bottom: 24px;
    }

        .broadcast .main::before {
            display: none;
        }

        .broadcast .main .video-wrapper {
            width: 100%;
            margin-right: 0px;
        }

            .broadcast .main .video-wrapper .wrap {
                margin-bottom: 12px;
                width: 100vw;
                margin-left: calc(-50vw + 50%);
                margin-right: calc(-50vw + 50%);
                border-radius: 0px;
            }

    .broadcast .mobile-info {
        display: block;
        margin-bottom: 16px;
    }

        .broadcast .mobile-info .title {
            font-family: Source Serif;
            font-weight: 700;
            font-size: 16px;
            line-height: 20px;
            margin-bottom: 8px;
        }

        .broadcast .mobile-info .description {
            font-family: Roboto Condensed;
            font-size: 16px;
            line-height: 24px;
            color: #383F42;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

    .broadcast .main .video-list {
        background-color: #EEF4F6;
        padding: 16px 0;
        position: relative;
    }

        .broadcast .main .video-list::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background: inherit;
            z-index: -1;
        }

        .broadcast .main .video-list .header {
            margin-bottom: 8px;
        }

            .broadcast .main .video-list .header .date {
                font-size: 16px;
                line-height: 20px;
            }

        .broadcast .main .video-list .list {
            overflow-y: unset;
            overflow-x: auto;
            flex-direction: row;
            display: flex;
        }

            .broadcast .main .video-list .list > * {
                flex-direction: column;
                width: 255px;
                flex: 1 0 auto;
            }

                .broadcast .main .video-list .list > * .thumb {
                    width: 100%;
                    margin-right: 0px;
                    margin-bottom: 12px;
                }

                .broadcast .main .video-list .list > *:nth-last-child(n+2) {
                    --space: 0px;
                    border-bottom: none;
                    margin-right: 16px;
                }

    .broadcast .most-view {
        display: none;
    }

    .broadcast .category-wrap .btn {
        padding: 8px 12px;
    }

        .broadcast .category-wrap .btn svg {
            width: 24px;
            height: 24px;
        }

    .broadcast .block-header .title {
        font-size: 20px;
        line-height: 25px;
    }

    .broadcast .block-header {
        margin-bottom: 24px;
    }

    .broadcast .category-wrap .sub-category,
    .broadcast .category-wrap {
        padding: 24px 0;
    }

        .broadcast .category-wrap .sub-category .list > * .title {
            font-size: 18px;
            line-height: 25px;
        }

        .broadcast .category-wrap:nth-last-child(n+2) {
            border-bottom: none;
        }

        .broadcast .category-wrap .sub-category .thumb .type {
            display: block;
        }

    .story-card .thumb .type .icon {
        width: 28px;
        height: 28px;
    }
}

@media screen and (max-width: 768px) {
    .broadcast .main .video-list .list::-webkit-scrollbar,
    .video-overflow::-webkit-scrollbar {
        display: none;
    }
}
