/* 视频横版模块样式 */
.shipin_hengban_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 100%;
    padding: 16px;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 12px;
}

.shipin_hengban_item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
}

.shipin_hengban_cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.shipin_hengban_cover_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shipin_hengban_title {
    margin-top: 10px;
    font-family: PingFang SC, PingFang SC, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #484848;
    line-height: 1.5;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
