.video-component {
    background-color: rgba(0,0,0,.9);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    position: fixed;

    --logo-width: 14vw;
    --padding-width: 4vw;
    --info-height: calc(5vw + var(--padding-width) * 2 + var(--logo-width) + 26px);
    --video-height: calc(100vh - var(--info-height));
}

.video-component-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-component-close {
    position: absolute;
    width: 8vw;
    height: 8vw;
    top: 10vw;
    right: 5vw;
    z-index: 10000;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(0,0,0,.5);
}

.vc-content-container {
    display: flex;
    place-items: center;
    height: var(--video-height);
}

.vc-info-container {
    padding: var(--padding-width);
    color: #fff;
    height: var(--info-height);
}

.vc-info-wrapper {
    display: flex;
    place-items: center;
}

.vc-content-container video {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
}

.vc-info-logo {
    width: var(--logo-width);
    height: var(--logo-width);
    overflow: hidden;
    border-radius: 50%;
}

.vc-info-logo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.vc-info-content {
    padding-left: 3vw;
    width: 77vw;
    overflow: hidden;
}

.vc-info-title {
    font-size: 15px;
    /* margin-bottom: 5px; */
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.vc-info-desc {
    font-size: 14px;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;

    margin-top: 2vw;
}

.u-swiper div,
.u-notify div {
    overflow: initial;
}

.u-notify a {
    display: block;
    color: var(--color);
}

.u-notify div span {
    width: 100%;
    display: inline-block;
}

.u-notify a,
.u-notify div span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: calc(var(--u) * var(--text));
    line-height: calc(var(--u) * var(--height));
}

.bindClick {
    position: relative;
    min-height: 100vh;
}