* {
    box-sizing: border-box;
}

body {
    margin: 0;

    background: #05070b;

    color: #fff;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
}

a {
    color: inherit;

    text-decoration: none;
}


/* 主容器 */

.site-wrap {
    width: 100%;

    max-width: 480px;

    min-height: 100vh;

    margin: 0 auto;

    padding: 14px;

    background:
        linear-gradient(
            180deg,
            #070a10 0%,
            #05070b 100%
        );
}


/* 通用视频区域 */

.vod-section {
    margin-bottom: 28px;
}

.vod-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;
}

.vod-section-title h2 {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 0;

    color: #f5f5f5;

    font-size: 22px;
    font-weight: 700;
}


/* SVG图标 */

.title-icon {
    width: 22px;
    height: 22px;

    object-fit: contain;

    flex-shrink: 0;
}


/* 更多按钮 */

.more-btn {
    height: 30px;

    padding: 0 12px;

    border-radius: 16px;

    border: 1px solid #252b35;

    background: #151922;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #d1d5db;

    font-size: 13px;

    transition: .2s;
}

.more-btn:hover {
    background: #1c2230;
}


.vod-grid,
.featured-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}


.featured-card {
    border: 1px solid #252b35;

    border-radius: 12px;

    background: #0d1118;

    overflow: hidden;
}

.featured-cover {
    height: 132px;

    overflow: hidden;

    background: #111827;
}

.featured-cover img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.featured-title {
    padding:
        10px
        10px
        6px;

    font-size: 15px;
    font-weight: 700;

    color: #fff;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-meta {
    height: 34px;

    padding:
        0
        10px
        10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #9ca3af;

    font-size: 12px;
}

.meta-play {
    color: #fb7185;
}

.meta-free {
    color: #4ade80;
}