$tabHeight: 44px;

.play {
    .video {
        width: 100%;
        height: 215px;
        background-color: $black;

        video {
            width: 100%;
            height: 100%;
        }
    }

    .tab {
        height: $tabHeight;
        max-height: $tabHeight;
        line-height: $tabHeight;
        text-align: center;
        background: #F7F9FC;
        flex: 1 0 auto;
        display: flex;
        justify-content: center;

        & > div {
            flex: 1 0 auto;
        }

        a {
            display: inline-block;
            height: $tabHeight;
            font-size: $font_16;
        }
    }

    .active {
        color: $active;
        border-bottom: 1px solid $active;
    }

}